-
Notifications
You must be signed in to change notification settings - Fork 0
/
suds.html
977 lines (977 loc) · 75.5 KB
/
suds.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Suds</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://code.iconify.design/2/2.1.1/iconify.min.js"></script>
<link rel="shortcut icon" type="image/x-icon" href="https://icons8.com/icon/4HQsWW1Jqlf9/r">
<style>
.box{
box-sizing:bordered-box;
border:3px solid;
width:80px;
}
.k{
font-size:11px;
}
.app{
box-sizing:bordered-box;
border:none;
width:138px;
height:45px;
}
.x{
font-size:11px;
font-weight: lighter;
line-height:1em;
}
.y{
line-height: 1em;
font-size: 18px;
}
.case{
width: 90px;
}
.image{
width:400px;
height:380px;
margin-left: 20px;
margin-right: 30px;
}
.head{
font-family: 'Raleway', sans-serif;
}
.b{
font-family: 'Raleway', sans-serif;
}
</style>
<style>
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap');
</style>
</head>
<body class="px-24 py-12">
<img src="https://img.icons8.com/material/50/000000/r.png"/ class="hidden">
<nav class="b bg-none flex justify-center md:justify-between">
<div class="">
<div class="b box text-center font-bold block">
S U D S
</div>
<div class="k text-center font-bold">
SNEAKER CARE
</div>
</div>
<div class="f font-semibold hidden md:flex space-x-5 py-2">
<span class="o cursor-pointer">Pickup/Delivery</span>
<span class="o cursor-pointer">About</span>
<span class="o cursor-pointer">Feautures</span>
<span class="o cursor-pointer">FAQ</span>
<span class="o cursor-pointer">Contacts</span>
</div>
</nav>
<div class="flex justify-between">
<div class="md:flex justify-between">
<div>
<h1 class="b font-bold text-4xl mt-10 text-gray-800 block">Clean sneakers<br>Delivered</h1>
<p class="b mt-9 text-xl text-gray-700 block">No more over-priced cleaning kits or household<br>products.We clean and restore your shoes safely<br>and efficiently delivered to your door</p>
<div class="mt-7 flex justify-around">
<div class="app bg-gray-900 text-white rounded mt-7 flex justify-between cursor-pointer">
<span class="iconify w-10 h-10 ml-1" data-icon="ion:logo-apple"></span>
<div class="">
<div class="x mr-2 mt-2">Download on the</div>
<div class="y">App Store</div>
</div>
</div>
<div class="app bg-gray-900 text-white rounded mt-7 flex justify-between ml-2 cursor-pointer">
<svg width="35px" height="35px" class="ml-2 mt-1" viewBox="-29.45 0 466.9 466.9" id="Layer_1" xmlns="http://www.w3.org/2000/svg"><style>.st0{fill:url(#SVGID_1_)}.st1{fill:url(#SVGID_2_)}.st2{fill:url(#SVGID_3_)}.st3{fill:url(#SVGID_4_)}</style><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" y1="112.094" x2="261.746" y2="112.094"><stop offset="0" stop-color="#63be6b"/><stop offset=".506" stop-color="#5bbc6a"/><stop offset="1" stop-color="#4ab96a"/></linearGradient><path class="st0" d="M261.7 142.3L15 1.3C11.9-.5 8-.4 5 1.4c-3.1 1.8-5 5-5 8.6 0 0 .1 13 .2 34.4l179.7 179.7 81.8-81.8z"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1=".152" y1="223.393" x2="179.896" y2="223.393"><stop offset="0" stop-color="#3ec6f2"/><stop offset="1" stop-color="#45afe3"/></linearGradient><path class="st1" d="M.2 44.4C.5 121.6 1.4 309 1.8 402.3L180 224.1.2 44.4z"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="179.896" y1="229.464" x2="407.976" y2="229.464"><stop offset="0" stop-color="#faa51a"/><stop offset=".387" stop-color="#fab716"/><stop offset=".741" stop-color="#fac412"/><stop offset="1" stop-color="#fac80f"/></linearGradient><path class="st2" d="M402.9 223l-141.2-80.7-81.9 81.8 92.4 92.4L403 240.3c3.1-1.8 5-5.1 5-8.6 0-3.6-2-6.9-5.1-8.7z"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="1.744" y1="345.521" x2="272.296" y2="345.521"><stop offset="0" stop-color="#ec3b50"/><stop offset="1" stop-color="#e7515b"/></linearGradient><path class="st3" d="M1.7 402.3c.2 33.3.3 54.6.3 54.6 0 3.6 1.9 6.9 5 8.6 3.1 1.8 6.9 1.8 10 0l255.3-148.9-92.4-92.4L1.7 402.3z"/></svg>
<div class="">
<div class="x mr-1 ml-2 mt-2">Android app on</div>
<div class="mr-2 font-serif">Google™play</div>
</div>
</div>
</div>
</div>
<img src="https://images.pexels.com/photos/2529146/pexels-photo-2529146.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=680&w=960" class="image mt-10 rounded-2xl mt-7 md:ml-5 md:w-1/3 md:h-full">
</div>
</div>
<div class="mt-32">
<h1 class="head text-center text-4xl">HOW IT WORKS</h1>
<p class="b text-gray-600 text-center mt-6 mb-8">Keeping your shoes clean shouldn’t be a hassle so<br>
we just made it a whole lot eaisier.</p>
<div class="gap-6 grid md:pl-24 sm:grid-cols-1 md:grid-cols-2 lg:grid-cols-3">
<div class="">
<div>
<div class="flex justify-center">
<span class="b md:ml-15 px-5 py-2 border-4 text-center rounded-full border-black mt-7 text-4xl">1</span>
</div>
<div class="flex justify-center">
<svg version="1.1" id="Layer_1" class="w-48 h-48 mt-14 mb-12 flex justify-center" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" class="mt-16 md:w-48 h-48 mb-6 basis-1/3" xml:space="preserve">
<g transform="translate(1 1)">
<path style="fill:#FFDD09;" d="M7.533,468.333V144.067h494.933v324.267c0,9.387-7.68,17.067-17.067,17.067H24.6
C15.213,485.4,7.533,477.72,7.533,468.333"/>
<path style="fill:#FCC309;" d="M7.533,144.067V75.8c0-9.387,7.68-17.067,17.067-17.067h460.8c9.387,0,17.067,7.68,17.067,17.067
v68.267H7.533z"/>
<path style="fill:#FD9808;" d="M485.4,58.733h-25.6c9.387,0,17.067,7.68,17.067,17.067v68.267v324.267
c0,9.387-7.68,17.067-17.067,17.067h25.6c9.387,0,17.067-7.68,17.067-17.067V144.067V75.8
C502.467,66.413,494.787,58.733,485.4,58.733"/>
<path style="fill:#FFFFFF;" d="M24.6,58.733h25.6c-9.387,0-17.067,7.68-17.067,17.067v68.267v324.267
c0,9.387,7.68,17.067,17.067,17.067H24.6c-9.387,0-17.067-7.68-17.067-17.067V144.067V75.8C7.533,66.413,15.213,58.733,24.6,58.733
"/>
<g>
<polygon style="fill:#54C9FD;" points="75.8,246.467 127,246.467 127,195.267 75.8,195.267 "/>
<polygon style="fill:#54C9FD;" points="178.2,246.467 229.4,246.467 229.4,195.267 178.2,195.267 "/>
<polygon style="fill:#54C9FD;" points="280.6,246.467 331.8,246.467 331.8,195.267 280.6,195.267 "/>
<polygon style="fill:#54C9FD;" points="383,246.467 434.2,246.467 434.2,195.267 383,195.267 "/>
<polygon style="fill:#54C9FD;" points="75.8,340.333 127,340.333 127,289.133 75.8,289.133 "/>
<polygon style="fill:#54C9FD;" points="178.2,340.333 229.4,340.333 229.4,289.133 178.2,289.133 "/>
<polygon style="fill:#54C9FD;" points="75.8,434.2 127,434.2 127,383 75.8,383 "/>
<polygon style="fill:#54C9FD;" points="178.2,434.2 229.4,434.2 229.4,383 178.2,383 "/>
</g>
<path style="fill:#1CD759;" d="M442.733,365.933c0-46.933-38.4-85.333-85.333-85.333s-85.333,38.4-85.333,85.333
s38.4,85.333,85.333,85.333S442.733,412.867,442.733,365.933"/>
<path style="fill:#15A143;" d="M357.4,280.6c-4.267,0-8.533,0.853-12.8,0.853c40.96,6.827,72.533,41.813,72.533,84.48
s-31.573,78.507-72.533,84.48c4.267,0.853,8.533,0.853,12.8,0.853c46.933,0,85.333-38.4,85.333-85.333S404.333,280.6,357.4,280.6"
/>
<path d="M485.4,493.933H24.6c-14.507,0-25.6-11.093-25.6-25.6V144.067c0-5.12,3.413-8.533,8.533-8.533h494.933
c5.12,0,8.533,3.413,8.533,8.533v324.267C511,482.84,499.907,493.933,485.4,493.933z M16.067,152.6v315.733
c0,5.12,3.413,8.533,8.533,8.533h460.8c5.12,0,8.533-3.413,8.533-8.533V152.6H16.067z"/>
<path d="M502.467,152.6H7.533c-5.12,0-8.533-3.413-8.533-8.533V75.8c0-14.507,11.093-25.6,25.6-25.6h460.8
c14.507,0,25.6,11.093,25.6,25.6v68.267C511,149.187,507.587,152.6,502.467,152.6z M16.067,135.533h477.867V75.8
c0-5.12-3.413-8.533-8.533-8.533H24.6c-5.12,0-8.533,3.413-8.533,8.533V135.533z"/>
<path d="M442.733,101.4c-5.12,0-8.533-3.413-8.533-8.533s3.413-8.533,8.533-8.533c14.507,0,25.6-11.093,25.6-25.6
s-11.093-25.6-25.6-25.6c-14.507,0-25.6,11.093-25.6,25.6c0,5.12-3.413,8.533-8.533,8.533c-5.12,0-8.533-3.413-8.533-8.533
c0-23.893,18.773-42.667,42.667-42.667c23.893,0,42.667,18.773,42.667,42.667S466.627,101.4,442.733,101.4z"/>
<path d="M348.867,101.4c-5.12,0-8.533-3.413-8.533-8.533s3.413-8.533,8.533-8.533c14.507,0,25.6-11.093,25.6-25.6
s-11.093-25.6-25.6-25.6c-14.507,0-25.6,11.093-25.6,25.6c0,5.12-3.413,8.533-8.533,8.533c-5.12,0-8.533-3.413-8.533-8.533
c0-23.893,18.773-42.667,42.667-42.667c23.893,0,42.667,18.773,42.667,42.667S372.76,101.4,348.867,101.4z"/>
<path d="M255,101.4c-5.12,0-8.533-3.413-8.533-8.533s3.413-8.533,8.533-8.533c14.507,0,25.6-11.093,25.6-25.6
s-11.093-25.6-25.6-25.6c-14.507,0-25.6,11.093-25.6,25.6c0,5.12-3.413,8.533-8.533,8.533c-5.12,0-8.533-3.413-8.533-8.533
c0-23.893,18.773-42.667,42.667-42.667s42.667,18.773,42.667,42.667S278.893,101.4,255,101.4z"/>
<path d="M161.133,101.4c-5.12,0-8.533-3.413-8.533-8.533s3.413-8.533,8.533-8.533c14.507,0,25.6-11.093,25.6-25.6
s-11.093-25.6-25.6-25.6c-14.507,0-25.6,11.093-25.6,25.6c0,5.12-3.413,8.533-8.533,8.533s-8.533-3.413-8.533-8.533
c0-23.893,18.773-42.667,42.667-42.667S203.8,34.84,203.8,58.733S185.027,101.4,161.133,101.4z"/>
<path d="M67.267,101.4c-5.12,0-8.533-3.413-8.533-8.533s3.413-8.533,8.533-8.533c14.507,0,25.6-11.093,25.6-25.6
s-11.093-25.6-25.6-25.6s-25.6,11.093-25.6,25.6c0,5.12-3.413,8.533-8.533,8.533S24.6,63.853,24.6,58.733
c0-23.893,18.773-42.667,42.667-42.667s42.667,18.773,42.667,42.667S91.16,101.4,67.267,101.4z"/>
<path d="M127,255H75.8c-5.12,0-8.533-3.413-8.533-8.533v-51.2c0-5.12,3.413-8.533,8.533-8.533H127c5.12,0,8.533,3.413,8.533,8.533
v51.2C135.533,251.587,132.12,255,127,255z M84.333,237.933h34.133V203.8H84.333V237.933z"/>
<path d="M229.4,255h-51.2c-5.12,0-8.533-3.413-8.533-8.533v-51.2c0-5.12,3.413-8.533,8.533-8.533h51.2
c5.12,0,8.533,3.413,8.533,8.533v51.2C237.933,251.587,234.52,255,229.4,255z M186.733,237.933h34.133V203.8h-34.133V237.933z"/>
<path d="M331.8,255h-51.2c-5.12,0-8.533-3.413-8.533-8.533v-51.2c0-5.12,3.413-8.533,8.533-8.533h51.2
c5.12,0,8.533,3.413,8.533,8.533v51.2C340.333,251.587,336.92,255,331.8,255z M289.133,237.933h34.133V203.8h-34.133V237.933z"/>
<path d="M434.2,255H383c-5.12,0-8.533-3.413-8.533-8.533v-51.2c0-5.12,3.413-8.533,8.533-8.533h51.2
c5.12,0,8.533,3.413,8.533,8.533v51.2C442.733,251.587,439.32,255,434.2,255z M391.533,237.933h34.133V203.8h-34.133V237.933z"/>
<path d="M127,348.867H75.8c-5.12,0-8.533-3.413-8.533-8.533v-51.2c0-5.12,3.413-8.533,8.533-8.533H127
c5.12,0,8.533,3.413,8.533,8.533v51.2C135.533,345.453,132.12,348.867,127,348.867z M84.333,331.8h34.133v-34.133H84.333V331.8z"/>
<path d="M229.4,348.867h-51.2c-5.12,0-8.533-3.413-8.533-8.533v-51.2c0-5.12,3.413-8.533,8.533-8.533h51.2
c5.12,0,8.533,3.413,8.533,8.533v51.2C237.933,345.453,234.52,348.867,229.4,348.867z M186.733,331.8h34.133v-34.133h-34.133V331.8
z"/>
<path d="M127,442.733H75.8c-5.12,0-8.533-3.413-8.533-8.533V383c0-5.12,3.413-8.533,8.533-8.533H127
c5.12,0,8.533,3.413,8.533,8.533v51.2C135.533,439.32,132.12,442.733,127,442.733z M84.333,425.667h34.133v-34.133H84.333V425.667z
"/>
<path d="M229.4,442.733h-51.2c-5.12,0-8.533-3.413-8.533-8.533V383c0-5.12,3.413-8.533,8.533-8.533h51.2
c5.12,0,8.533,3.413,8.533,8.533v51.2C237.933,439.32,234.52,442.733,229.4,442.733z M186.733,425.667h34.133v-34.133h-34.133
V425.667z"/>
<path d="M357.4,459.8c-52.053,0-93.867-41.813-93.867-93.867s41.813-93.867,93.867-93.867s93.867,41.813,93.867,93.867
S409.453,459.8,357.4,459.8z M357.4,289.133c-42.667,0-76.8,34.133-76.8,76.8s34.133,76.8,76.8,76.8s76.8-34.133,76.8-76.8
S400.067,289.133,357.4,289.133z"/>
<path d="M348.867,417.133c-2.56,0-4.267-0.853-5.973-2.56L308.76,380.44c-3.413-3.413-3.413-8.533,0-11.947s8.533-3.413,11.947,0
l26.453,26.453l45.227-68.267c2.56-4.267,7.68-5.12,11.947-2.56c4.267,2.56,5.12,7.68,2.56,11.947l-51.2,76.8
C354.84,415.427,352.28,417.133,348.867,417.133C349.72,417.133,348.867,417.133,348.867,417.133z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
</div>
</div>
<div class="b text-xl mb-4 text-center">Schedule a Free Pickup</div>
<div class="b mb-24 text-gray-700 text-center">We can collect from your home, office or<br>
wherever works for you. We offer 2 hour<br>
pickup windows seven days a week. </div>
</div>
<div class="">
<div class="flex justify-center">
<span class="b md:ml-15 px-5 py-2 border-4 text-center rounded-full border-black mt-7 text-4xl">2</span>
</div>
<div class="flex justify-center">
<svg version="1.1" id="Layer_1" class="w-52 h-52 mt-14 mb-12 flex justify-center" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 496.246 496.246" class="mt-16 md:w-52 h-52 mb-3" style="enable-background:new 0 0 496.246 496.246;" xml:space="preserve">
<path style="fill:#1A3D5B;" d="M471.135,68.332H250.778v6.451c0-15.328-12.446,12.69-27.758,12.69H93.468
c-15.321,0-27.75,12.43-27.75,27.75L4.427,321.118c0,15.344,12.414,27.758,27.758,27.758h140.753h50.089h248.115
c6.845,0,12.383-5.537,12.383-12.367V80.699C483.525,73.862,477.98,68.332,471.135,68.332z"/>
<path style="fill:#0A2438;" d="M18.188,274.857L4.419,321.119c0,15.344,12.414,27.758,27.758,27.758H172.93h50.089h248.115
c6.845,0,12.383-5.537,12.383-12.367v-61.653H18.188z"/>
<path style="fill:#528099;" d="M153.624,114.475H65.788c0,0.252-0.063,0.496-0.063,0.756l-26.734,89.773
c1.434,0.221,2.867,0.457,4.372,0.457h110.269c15.328,0,27.758-12.43,27.758-27.758v-35.47
C181.382,126.889,168.952,114.475,153.624,114.475z"/>
<path style="fill:#C1E5F4;" d="M54.91,282.199c0,14.249-3.269,25.813-7.326,25.813c-4.033,0-7.318-11.571-7.318-25.813
c0-14.281,3.285-25.836,7.318-25.836C51.641,256.362,54.91,267.918,54.91,282.199z"/>
<path style="fill:#D9F5FF;" d="M47.584,308.019c-4.033,0-7.318-11.571-7.318-25.813c0-14.281,3.285-25.836,7.318-25.836"/>
<g>
<path style="fill:#1D5777;" d="M108.19,205.462l71.719-71.719c-2.576-7.971-8.554-14.336-16.321-17.337l-89.049,89.056H108.19z"/>
<path style="fill:#1D5777;" d="M125.424,205.462h28.199c15.328,0,27.758-12.43,27.758-27.758v-28.199L125.424,205.462z"/>
<path style="fill:#1D5777;" d="M93.538,114.475h-27.75c0,0.252-0.063,0.496-0.063,0.756L54.24,153.765L93.538,114.475z"/>
</g>
<path style="fill:#FFA522;" d="M496.246,359.944c0,5.711-4.632,10.342-10.342,10.342H10.335C4.608,370.294,0,365.655,0,359.944
V324.34c0-5.727,4.608-10.342,10.335-10.342h475.569c5.711,0,10.342,4.624,10.342,10.342V359.944z"/>
<g>
<path style="fill:#FFC41F;" d="M485.904,313.998H10.335C4.608,313.998,0,318.622,0,324.348v7.845
c0,5.711,4.608,10.335,10.335,10.335h475.569c5.711,0,10.342-4.632,10.342-10.335v-7.845
C496.246,318.622,491.615,313.998,485.904,313.998z"/>
<path style="fill:#FFC41F;" d="M135.467,376.596c0,19.259-15.644,34.895-34.911,34.895s-34.895-15.628-34.895-34.895
c0-19.291,15.628-34.926,34.895-34.926S135.467,357.297,135.467,376.596z"/>
</g>
<path style="fill:#FFA522;" d="M100.557,341.669c19.267,0,34.911,15.628,34.911,34.926c0,19.259-15.644,34.895-34.911,34.895"/>
<path style="fill:#1A3D5B;" d="M100.557,427.914c-28.302,0-51.326-23.032-51.326-51.326c0-28.325,23.016-51.342,51.326-51.342
s51.326,23.016,51.326,51.342C151.883,404.882,128.859,427.914,100.557,427.914z M100.557,358.101
c-10.193,0-18.479,8.302-18.479,18.495c0,10.177,8.287,18.464,18.479,18.464s18.495-8.287,18.495-18.464
C119.052,366.403,110.75,358.101,100.557,358.101z"/>
<circle style="fill:#FFC41F;" cx="402.038" cy="376.58" r="34.903"/>
<path style="fill:#FFA522;" d="M377.336,351.894c13.627-13.619,35.738-13.619,49.357,0c13.643,13.627,13.627,35.738,0,49.373"/>
<path style="fill:#1A3D5B;" d="M438.319,412.877c-20.023,20.023-52.578,20.023-72.602,0c-20.023-20.023-20.023-52.571,0-72.586
c20.023-20.039,52.578-20.039,72.602,0C458.327,360.306,458.327,392.854,438.319,412.877z M388.962,363.504
c-7.223,7.207-7.223,18.928,0,26.136c7.192,7.207,18.913,7.207,26.12,0c7.2-7.207,7.2-18.928,0-26.136
C407.883,356.313,396.154,356.313,388.962,363.504z"/>
<g>
<path style="fill:#FFC41F;" d="M303.206,239.293h-37.053c23.182-22.481,40.669-41.913,40.669-66.19
c0-20.385-13.257-40.952-42.803-40.952c-13.989,0-27.38,4.813-37.715,13.556c-2.206,1.89-2.922,5.002-1.733,7.656l5.104,11.311
c0.835,1.843,2.505,3.198,4.49,3.671c1.961,0.473,4.057-0.047,5.616-1.355c3.797-3.174,11.603-8.523,20.953-8.523
c11.453,0,17.006,5.451,17.006,16.581c-0.15,15.006-12.524,29.168-42.134,57.344l-12.564,12.209
c-1.26,1.213-1.969,2.907-1.969,4.671v9.838c0,3.592,2.907,6.498,6.514,6.498h75.618c3.616,0,6.514-2.907,6.514-6.498v-13.304
C309.713,242.2,306.822,239.293,303.206,239.293z"/>
<path style="fill:#FFC41F;" d="M404.362,207.762h-10.075v-67.104c0-3.592-2.922-6.498-6.514-6.498h-17.321
c-2.111,0-4.12,1.048-5.341,2.773l-52.838,75.634c-0.764,1.095-1.174,2.379-1.174,3.718v10.571c0,3.584,2.907,6.491,6.506,6.491
h48.514v25.765c0,3.592,2.922,6.498,6.522,6.498h15.132c3.592,0,6.514-2.907,6.514-6.498v-25.765h10.075
c3.584,0,6.491-2.907,6.491-6.491v-12.572C410.852,210.668,407.946,207.762,404.362,207.762z M346.262,207.762l19.858-27.672
v27.672H346.262z"/>
</g>
<g>
<path style="fill:#FFA522;" d="M309.713,259.104v-13.304c0-3.592-2.891-6.498-6.514-6.498h-24.773h-12.28
c23.182-22.481,40.669-41.913,40.669-66.19c0-18.897-11.422-37.935-36.659-40.598c-11.729,1.189-22.764,5.75-31.579,13.202
c-2.206,1.89-2.922,5.002-1.733,7.656l5.104,11.311c0.079,0.158,0.244,0.244,0.323,0.41c4.246-3.04,10.815-6.617,18.464-6.617
c2.363,0,4.411,0.284,6.262,0.756c1.914-0.457,3.931-0.756,6.018-0.756c11.453,0,17.006,5.451,17.006,16.581
c-0.142,15.006-12.516,29.168-42.134,57.344l-12.564,12.209c-1.268,1.213-1.977,2.907-1.977,4.671v9.838
c0,3.592,2.907,6.498,6.514,6.498h63.338C306.822,265.602,309.713,262.695,309.713,259.104z"/>
<path style="fill:#FFA522;" d="M394.287,259.104v-25.765h81.967c3.592,0,6.498-2.907,6.498-6.491v-12.572
c0-3.608-2.907-6.514-6.498-6.514h-81.967v-67.104c0-3.592-2.922-6.498-6.514-6.498h-5.041c-2.111,0-4.12,1.048-5.341,2.773
l-52.831,75.634c-0.772,1.095-1.182,2.379-1.182,3.718v10.571c0,3.584,2.907,6.491,6.506,6.491h36.234h12.28v25.765
c0,3.592,2.922,6.498,6.522,6.498h2.851C391.365,265.602,394.287,262.695,394.287,259.104z M378.407,207.762h-12.28h-7.578h-12.28
l19.858-27.672v17.101l12.28-17.101V207.762z"/>
<path style="fill:#FFA522;" d="M483.037,186.25c0,1.875-1.512,3.395-3.395,3.395h-72.208c-1.875,0-3.395-1.512-3.395-3.395l0,0
c0-1.859,1.512-3.395,3.395-3.395h72.208C481.524,182.855,483.037,184.383,483.037,186.25L483.037,186.25z"/>
<path style="fill:#FFA522;" d="M483.037,167.834c0,1.875-1.512,3.395-3.395,3.395h-72.208c-1.875,0-3.395-1.512-3.395-3.395l0,0
c0-1.859,1.512-3.395,3.395-3.395h72.208C481.524,164.439,483.037,165.967,483.037,167.834L483.037,167.834z"/>
<path style="fill:#FFA522;" d="M483.037,149.417c0,1.875-1.512,3.395-3.395,3.395h-72.208c-1.875,0-3.395-1.512-3.395-3.395l0,0
c0-1.859,1.512-3.395,3.395-3.395h72.208C481.524,146.022,483.037,147.551,483.037,149.417L483.037,149.417z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
</div>
<div class="b text-xl mb-4 text-center">Pickup</div>
<div class="b mb-24 text-gray-700 text-center">Your shoes will be evaluated by<br>
the driver to ensure that you receive the<br>
best results and answer any questions. </div>
</div>
<div class="">
<div class="flex justify-center">
<span class="b md:ml-15 px-5 py-2 border-4 text-center rounded-full border-black mt-7 text-4xl">3</span>
</div>
<div class="flex justify-center">
<svg version="1.0" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1200px" height="1200px" class="w-52 h-52 mt-14 mb-12 flex justify-center" viewBox="0 0 1200 1200" enable-background="new 0 0 1200 1200" xml:space="preserve">
<g>
<path opacity="0.5" fill="#888A90" d="M816.53,1141.747c0,0-17.957,16.455-70.336,11.968c-52.375-4.488-52.375-5.974-79.312-8.976
c-26.938-2.992-58.368-8.976-65.843-8.976c-7.485,0-35.913,4.487-35.913,4.487s-7.491,32.922-35.924,38.916
c-28.434,5.984-38.701-7.103-59.859-10.482c-37.41-5.995-43.205-38.999-94.8-46.897c-40.187-6.162-1.208-26.572,26.571-30.201
c6.12-0.796,59.875-15.661,183.579-2.407c67.643,7.239,91.17-8.787,104.639-1.297
C702.801,1095.351,816.53,1141.747,816.53,1141.747z"/>
<g>
<g>
<path fill="#EEE5E2" d="M710.187,1081.407c0,0,93.926,19.573,109.246,48.028c8.615,16.016-53.164,25.399-108.357,17.522
c-55.189-7.887-68.568-17.429-73.516-22.502c-5.608-5.764-5.006-12.732-4.389-23.036c0.602-10.325,4.844-21.236,4.844-21.236
S670.764,1094.734,710.187,1081.407z"/>
<path fill="#B1AEAB" d="M743.538,1143.557c-55.769-1.308-104.53-21.895-109.211-23.925c0.717,1.716,1.763,3.306,3.233,4.823
c4.948,5.073,18.328,14.615,73.516,22.502c53.174,7.584,112.443-0.858,108.99-15.796
C812.566,1139.289,795.059,1144.749,743.538,1143.557z"/>
</g>
<g>
<path fill="#EEE5E2" d="M467.805,1082.61c0,0-28.956,56.919-13.077,76.932c15.875,20.013,56.846,22.419,80.667,14.227
c23.82-8.191,16.869-37.325,13.793-52.536c-4.405-21.833-6.392-34.072-6.392-34.072S502.212,1106.263,467.805,1082.61z"/>
<path fill="#B1AEAB" d="M535.396,1173.769c12.836-4.415,16.727-14.918,17.119-26.028c-4.425,12.178-17.685,28.204-57.354,22.649
c-29.051-4.07-40.825-15.483-45.145-26.414c0.193,6.14,1.559,11.58,4.712,15.566
C470.603,1179.554,511.575,1181.96,535.396,1173.769z"/>
</g>
<path fill="#2D1F1F" d="M510.654,607.722c0,0-7.276,104.623-21.838,240.169c-14.552,135.557-39.522,258.173-31.012,257.839
c24.15-0.911,27.633-7.898,55.089-3.097c16.863,2.95,33.449,13.715,36.232,9.917c2.783-3.808,13.38-142.754,26.117-223.714
c12.732-80.981,29.887-130.451,33.759-130.734c24.17-1.789,20.592,324.508,21.283,329.738c0.68,5.231,18.877,13.412,44.35,10.681
c25.469-2.731,42.227-13.944,44.502-15.608c2.27-1.684,3.478-140.411,2.574-225.931c-0.911-85.511,0-232.878,0-232.878
L510.654,607.722z"/>
<g>
<path fill="#551618" d="M548.628,300.768c0,0,19.793-5.91,44.811-5.461c25.013,0.461,36.615,5.461,36.615,5.461
s2.956,12.732-1.595,25.463c-4.545,12.752-23.193,25.337-42.301,23.736C567.051,348.377,545.673,306.679,548.628,300.768z"/>
<g>
<g>
<g>
<g>
<path fill="#CC7E4C" d="M626.868,323.281c-3.179-8.861,0.455-28.203,0.455-28.203s-30.704,8.871-70.252-0.189
c0.152,5.44-0.931,26.582-0.931,26.582s2.427,7.281,6.067,12.428c8.16,11.57,35.777,55.487,43.66,56.71
c7.887,1.203,15.169-28.507,21.838-49.743c1.412-4.498,2.306-9.164,2.845-13.726
C628.709,326.001,627.386,324.724,626.868,323.281z"/>
<path fill="#BA6B43" d="M557.505,304.315c0,0,27.361,18.108,41.652,18.108c14.296,0,26.436-15.86,26.436-15.86l0.847-5.89
c0,0-24.097,7.292-40.637,6.172c-16.533-1.141-28.857-6.454-28.857-6.454L557.505,304.315z"/>
</g>
<g>
<path fill="#CC7E4C" d="M662.886,185.799c0,0,11.832-16.738,23.24,1.631c7.39,11.915-2.244,41.207-11.398,40.632
c-9.154-0.565-9.154-0.565-9.154-0.565L662.886,185.799z"/>
<path fill="#A5583B" d="M672.741,192.881c0,0,6.057-6.057,8.107-3.326c2.066,2.731,2.652,9.551,2.652,9.551
s-2.36-8.181-3.824-5.001c-1.475,3.18-2.651,13.191-1.475,14.102c1.177,0.9,3.536-0.911,1.475,3.18
c-2.061,4.101-7.244,7.73-7.244,7.73L672.741,192.881z"/>
<path fill="#E3935D" d="M496.705,233.523c0,0,4.807,37.587,35.782,57.61c30.934,20.022,66.105,22.45,90.364,12.135
c24.26-10.315,45.491-33.957,48.525-58.217c2.375-19.039,0-94.611,0-94.611s-29.118-19.416-70.964-22.439
c-41.844-3.044-109.168,22.439-109.168,22.439l-0.606,35.171c0,0-23.654-6.674-31.536,6.067
C451.214,204.41,468.805,251.118,496.705,233.523z"/>
<path fill="#CC7E4C" d="M564.78,141.789c-61.863,12.282-72.778,24.563-72.778,24.563s11.993,35.086,34.726,29.626
c22.742-5.472,56.794-20.243,92.279-15.692c23.642,3.024,43.414,7.94,53.326,11.236c-0.319-18.245-0.958-41.082-0.958-41.082
s-1.365-0.92-3.917-2.364C646.939,141.925,607.368,133.346,564.78,141.789z"/>
<path fill="#682D1F" d="M474.945,183.79c0,0,14.76,2.426,19.615,13.349c4.854,10.91,3.959,20.619,7.599,15.158
c3.641-5.46,8.856-27.209,7.642-44.199c-1.214-16.967-5.821-21.309-5.821-21.309l-28.513,7.898L474.945,183.79z"/>
<path fill="#889F41" d="M473.052,169.845c7.877,2.427,64.896-35.171,134.035-27.9c51.396,5.409,65.8,18.507,68.228,14.856
c2.427-3.63,8.186-14.248,3.331-39.115c-4.848-24.866-7.16-40.265-12.726-58.823c-7.28-24.26-46.709-38.215-77.031-39.429
c-30.321-1.214-80.834,4.352-104.314,47.306C463.343,105.551,465.169,167.419,473.052,169.845z"/>
<path fill="#BF6E43" d="M488.932,213.783c0,0,0.115-12.251-11.826-17.293c-9.745-4.111-11.826,1.81-12.732,5.001
c-0.916,3.191,2.725,8.642,2.725,8.642s-0.911-10.912,3.18-10.912c4.095,0,6.826,2.27,9.101,5.001
c2.27,2.731,2.725,6.371,2.725,6.371s-3.975-0.837-7.506,0.722c-3.327,1.464-5.681,8.829-5.681,8.829
s3.181-5.46,10.006-5.001c6.821,0.45,10.462,8.181,10.462,8.181L488.932,213.783z"/>
<path fill="#C67646" d="M612.087,203.656c0,0,20.389,19.259,18.045,29.563c-2.348,10.315-16.989,18.496-30.551,15.159
c-13.563-3.327-19.182-20.002-19.182-20.002s5.922,6.099,20.086,11.36c11.832,4.405,26.849-4.09,27.633-10.461
C628.898,222.915,612.087,203.656,612.087,203.656z"/>
<path fill="#8C382B" d="M563.369,253.943c0,0,15.477,9.709,36.991,9.185c21.504-0.533,30.422-8.149,30.422-8.149
s0.79-4.708,1.836-3.672c1.051,1.067-0.262,10.765-1.313,9.185c-1.047-1.559-3.667-1.046-3.667-1.046
s-12.862,6.298-29.114,6.298c-16.267,0-35.155-8.129-35.155-8.129s-5.236,3.661-3.928,0.251
C560.748,254.466,562.851,247.645,563.369,253.943z"/>
<g>
<path fill="#CC7E4C" d="M571.1,190.988c0.413,11.664-2.302,20.734-13.438,21.612c-11.136,0.879-14.531-8.944-14.944-20.598
c-0.419-11.665,5.602-21.341,13.443-21.624C563.996,170.097,570.681,179.323,571.1,190.988z"/>
<path fill="#E6D3C8" d="M569.28,189.858c0.387,10.639-2.004,18.903-11.817,19.699c-9.802,0.795-12.804-8.17-13.18-18.788
c-0.382-10.639,4.906-19.448,11.81-19.699C562.997,170.829,568.908,179.24,569.28,189.858z"/>
<g>
<path fill="#23282B" d="M566.899,195.884c0,6.298-4.881,11.413-10.912,11.413c-6.03,0-10.921-5.115-10.921-11.413
c0-6.298,4.891-11.403,10.921-11.403C562.019,184.48,566.899,189.586,566.899,195.884z"/>
<path fill="#1B1419" d="M559.733,194.911c0,2.154-1.751,3.912-3.901,3.912c-2.166,0-3.918-1.758-3.918-3.912
c0-2.166,1.751-3.913,3.918-3.913C557.981,190.998,559.733,192.745,559.733,194.911z"/>
</g>
<circle fill="#FFFFFF" cx="561.446" cy="192.734" r="2.576"/>
<path fill="#682D1F" d="M571.372,195.684c0,0-0.68-15.65-8.834-20.901c-11.283-7.292-19.134,7.27-19.134,7.27
s1.016-12.104,9.813-13.652C566.141,166.131,572.355,178.863,571.372,195.684z"/>
</g>
<g>
<path fill="#CC7E4C" d="M651.839,191.658c0.419,11.674-2.312,20.744-13.438,21.623c-11.137,0.889-14.53-8.944-14.949-20.608
c-0.414-11.654,5.612-21.341,13.448-21.613C644.736,170.787,651.431,180.004,651.839,191.658z"/>
<g>
<path fill="#E6D3C8" d="M649.951,189.858c0.372,10.639-2.014,18.903-11.816,19.699c-9.812,0.795-12.815-8.17-13.196-18.788
c-0.377-10.639,4.916-19.448,11.816-19.699C643.664,170.829,649.569,179.24,649.951,189.858z"/>
<g>
<path fill="#23282B" d="M647.178,195.611c0,6.287-4.89,11.393-10.921,11.393c-6.026,0-10.696-5.314-10.696-11.623
c0-6.287,4.671-11.183,10.696-11.183C642.288,184.199,647.178,189.303,647.178,195.611z"/>
<path fill="#1B1419" d="M640.002,194.617c0,2.166-1.747,3.913-3.912,3.913c-2.155,0-3.902-1.747-3.902-3.913
c0-2.154,1.747-3.901,3.902-3.901C638.255,190.716,640.002,192.463,640.002,194.617z"/>
</g>
</g>
<path fill="#FFFFFF" d="M644.689,192.734c0,1.424-1.151,2.574-2.573,2.574s-2.584-1.15-2.584-2.574
c0-1.423,1.161-2.573,2.584-2.573S644.689,191.312,644.689,192.734z"/>
<path fill="#682D1F" d="M624.368,193.655c0,0,2.945-20.472,12.763-21.383c9.814-0.911,15.211,11.36,15.211,11.36
s-2.453-14.091-12.758-15.002C629.274,167.722,624.368,179.093,624.368,193.655z"/>
</g>
<path fill="#682D1F" d="M619.822,170.756c0,0,10.917-7.887,21.833-7.281c10.912,0.597,17.585,14.855,17.585,14.855
s0.303-15.461-14.86-20.305c-15.163-4.854-22.517,5.073-22.517,5.073L619.822,170.756z"/>
<path fill="#682D1F" d="M576.759,172.273c0,0-8.49-11.529-21.833-10.315c-13.343,1.224-19.708,12.124-19.708,12.124
s3.938-16.058,19.4-17.888c15.468-1.809,23.119,8.265,23.119,8.265L576.759,172.273z"/>
<path fill="#3F5E35" d="M488.816,160.138c-1.303,0.628-1.485,3.818-1.485,3.818s6.34,15.598,29.992,18.015
c23.647,2.426,37.896-14.918,87.325-16.373c51.564-1.527,73.81,18.298,81.122,15.315c3.865-1.579,4.932-6.59,4.378-9.927
c-1.377-8.212-12.104-16.916-12.104-16.916s-33.376-14.448-76.425-15.765C548.927,136.694,499.006,155.294,488.816,160.138z"
/>
<path fill="#778D41" d="M488.816,160.138c0,0,4.855,15.765,28.508,18.192c23.647,2.438,37.896-14.918,87.325-16.372
c51.564-1.506,73.81,18.318,81.122,15.315c13.354-5.461-7.726-26.833-7.726-26.833s-33.376-14.457-76.425-15.765
C542.19,132.844,488.816,160.138,488.816,160.138z"/>
<path fill="#8B4029" d="M484.501,168.862c0,0-2.709,4.728-2.589,8.914c0.105,4.163,2.589,7.668,2.589,7.668
s-1.464-5.314-0.79-9.363C484.391,172.022,484.501,168.862,484.501,168.862z"/>
<path fill="#8B4029" d="M491.39,172.022c0,0-1.925,6.307-1.245,11.172c0.674,4.854,4.513,10.712,4.513,10.712
s-2.37-9.028-2.715-13.316C491.61,176.3,491.39,172.022,491.39,172.022z"/>
</g>
</g>
<path fill="#D18252" d="M468.197,228.376c0,0,7.584,6.36,16.99,5.147c9.394-1.214,13.636-4.247,13.636-4.247
s7.281,34.877,33.664,55.81c26.383,20.913,70.352,20.913,92.185,13.035c21.832-7.898,35.777-25.484,35.777-25.484
s-20.06,29.061-48.572,35.119c-28.507,6.067-60.591-2.668-80.604-16.309c-28.182-19.218-34.569-57.924-34.569-57.924
s-4.546,4.132-11.826,3.943C473.052,237.163,468.197,228.376,468.197,228.376z"/>
</g>
<polygon fill="#682D1F" points="672.045,177.556 672.741,192.881 675.968,179.041 "/>
</g>
</g>
<path fill="#889F41" d="M743.511,396.048c-7.559-14.76-14.672-33.569-17.554-38.8c-9.949-18.077-25.996-21.362-42.739-28.036
c-20.447-8.139-33.999-13.244-38.048-15.096c-4.054-1.872-6.684-8.337-8.327-10.273c-3.332-3.901-6.789-3.076-6.789-3.076
s0.078,19.489-4.77,33.445c-4.859,13.935-19.416,47.284-19.416,47.284s-0.942-1.454-2.511-3.923
c-5.225-9.205-14.363-27.199-21.744-37.535c-1.198-1.987-28.125-36.457-32.142-38.591c-4.017-2.124-11.449,11.622-11.826,13.401
c-50.842,8.17-88.727,26.875-93.047,52.756c-3.364,20.211-7.239,43.278-4.792,77.695c2.417,34.104,10.807,66.596,10.807,66.596
s15.765-21.216,33.962-23.046c14.426-1.443,17.215,2.93,17.748,4.792c0.02,0.105,0.057,0.23,0.078,0.334
c0.052,0.294,0.047,0.471,0.047,0.471s0.67,3.525,2.103,9.478c1.265,6.643,2.223,13.568,2.464,20.106
c0.904,24.553-1.825,94.611-0.911,100.072c0.911,5.461,18.192,23.664,30.023,29.114c9.541,4.393,27.979,8.808,61.031,9.865
c12.993,3.493,68.532,2.803,90.893,0.136c25.467-3.044,46.636-3.013,43.664-23.643c-13.652-94.622-1.511-164.67-1.511-164.67
s6.675-9.698,23.653-10.315c16.979-0.607,28.502,3.034,28.502,3.034S760.485,429.232,743.511,396.048z"/>
<path fill="#3F5E35" d="M477.017,488.631c24.244-7.574,39.141-7.825,37.953,2.208c-1.365,11.58-67.391,31.373-64.357,19.855
C450.612,510.694,452.773,496.195,477.017,488.631z"/>
<path fill="#3F5E35" d="M614.702,388.046c0,0,2.803,3.389,2.803,6.109c0,2.731-2.573,6.067-2.573,6.067s-0.963,0-1.37,0
c-2.182,0-3.95-2.72-3.95-6.067s1.768-6.057,3.95-6.057C613.969,388.099,614.702,388.046,614.702,388.046z"/>
<path fill="#C1A499" d="M618.797,394.134c0,3.358-1.773,6.067-3.943,6.067c-2.177,0-3.939-2.709-3.939-6.067
c0-3.348,1.762-6.067,3.939-6.067C617.024,388.067,618.797,390.787,618.797,394.134z"/>
<path fill="#3F5E35" d="M663.488,349.057c-2.731-7.584-16.079-29.72-16.079-29.72s10.921,19.719,13.956,30.934
c3.034,11.225,3.034,23.35,0.915,22.439c-2.123-0.909-9.404-11.214-15.472-15.158c-6.063-3.934-13.035-7.584-13.035-7.584
l3.943,6.967c0,0-6.977,4.561-15.472,10.932c-6.617,4.959-15.31,10.921-16.377,16.068c-1.062,5.146,0,33.968,0,33.968
l4.336-32.472c0.434-0.973,0.904-1.789,1.428-2.417c5.152-6.067,26.99-22.428,26.99-22.428l2.123-3.944
c0,0,8.495,6.675,11.22,12.742c2.731,6.057,4.247,12.427,6.365,10.607c2.119-1.82,1.826-4.854,1.826-4.854
s2.729,1.528,5.146-1.214C667.73,371.193,666.219,356.641,663.488,349.057z"/>
<path fill="#889F41" d="M647.566,417.589v85.071h-31.384v90.5h-16.377v70.06l12.804,1.673c17.941,1.014,45.286,0.617,64.075-0.648
V417.589H647.566z M500.303,634.847c4.629,10.734,23.992,12.92,35.824,18.371c4.509,2.071,11.026,4.153,20.107,5.879
c4.66,0.492,7.788,0.795,7.788,0.795l-57.594-72.758C506.026,605.88,495.68,624.104,500.303,634.847z"/>
<path fill="#3F5E35" d="M584.338,362.395c-10.006-8.18-20.012-7.877-20.012-7.877l-1.821-8.181c0,0-3.635,2.427-8.185,7.878
c-4.545,5.45-12.13,18.495-15.164,22.136c-3.028,3.64-4.854-9.405-4.854-20.619c0-7.145,1.475-23.601,2.547-34.637
c-1.945,8.713-4.896,27.816-4.665,36.154c0.303,10.921,4.242,30.023,7.584,25.765c0.931-1.182,8.223-12.825,11.805-18.442
c3.876-6.109,8.427-11.801,8.427-11.801l2.735,6.601c0,0,5.168-3.609,17.304,3.369c12.124,6.977,20.373,16.654,20.373,16.654
l-5-7.052C592.524,369.53,588.721,365.994,584.338,362.395z"/>
<g>
<g>
<polygon fill="#FFFFFF" points="642.257,707.491 829.063,705.974 829.968,594.081 792.553,583.818 607.881,583.818
607.996,691.422 "/>
<polygon fill="#CEC3C0" points="607.531,583.619 642.566,594.081 829.968,594.081 793.578,583.169 "/>
<polygon fill="#D5CCC7" points="607.531,583.619 642.566,594.081 642.566,706.277 607.996,691.422 "/>
</g>
<g>
<polygon fill="#FFFFFF" points="621.638,584.174 647.937,591.35 816.866,591.35 816.866,502.105 785.398,496.131
622.438,496.529 "/>
<polygon fill="#CEC3C0" points="622.438,496.529 649.528,502.9 816.866,502.105 785.398,496.131 "/>
<polygon fill="#D5CCC7" points="622.438,496.529 649.528,502.9 648.737,591.35 621.638,584.174 "/>
</g>
<g>
<polygon fill="#FFFFFF" points="670.345,500.818 784.974,500.232 784.974,408.038 669.744,408.038 "/>
<polygon fill="#D5CCC7" points="670.157,408.038 654.229,409.596 654.089,498.401 670.764,500.818 "/>
</g>
</g>
<path fill="#3F5E35" d="M502.16,421.532c0,0,1.821,37.001,4.242,47.913c2.433,10.921,4.253,18.192,4.253,18.192
s1.815,4.855,1.208,9.102c-0.602,4.246,17.591,61.857,32.749,97.048c15.164,35.181,43.671,69.746,43.671,69.746l8.876-0.45
c0,0-37.383-52.328-55.576-97.813c-18.197-45.475-26.687-78.24-27.293-91.577c-0.602-13.338,3.039-37.001,3.039-37.001
l-7.281,24.27L502.16,421.532z"/>
<g>
<path fill="#E3935D" d="M483.899,490.012c-14.959,3.442-26.514,13.485-26.514,13.485s2.072,12.146,15.059,46.008
c11.979,31.217,82.226,136.865,120.425,162.39c31.954,21.362,64.896,23.444,88.319,15.326
c23.429-8.108,37.41-21.875,29.302-23.674c-8.112-1.8-31.629,2.856-39.727,3.337c-14.855,0.911-28.334-3.085-28.334-3.085
s38.042,0.951,32.885-9.95c-3.672-7.782-17.496-1.287-26.833-4.696c-27.748-10.169-36.802-4.823-40.794-8.338
c-38.738-34.229-82.774-136.76-87.822-150.955c-7.397-20.849-9.912-40.559-9.912-40.559S503.081,485.577,483.899,490.012z"/>
</g>
<path fill="#CB7B4A" d="M839.294,668.439c4.984,3.337-9.551,6.841-2.056,20.933c4.2,7.877-1.731,19.939-9.394,23.579
c-7.669,3.63-19.296,5.127-24.899,4.719c-6.637-0.471-10.482-2.814-10.089-5.242c0.407-2.417,2.024-3.222,2.024-3.222
s-8.578,3.745-13.427-3.232h47.609v-50.256C829.063,655.718,833.154,664.359,839.294,668.439z"/>
<path fill="#E3935D" d="M835.659,667.089c-4.551-0.461-8.417,0.45-13.428,3.87c-5.518,3.756-9.09,16.592,4.551,14.092
c13.647-2.511,14.557-6.131,15.698-9.551C843.614,672.09,840.205,667.539,835.659,667.089z"/>
<path fill="#CB7B4A" d="M703.545,703.358c-2.731,0-10.656,0.178-21.065,1.705c-12.961,1.905-18.061,1.905-24.861,1.277
c-6.794-0.638-10.221-2.135-10.221-2.135s15.107-0.22,22.341-3.19c7.145-2.95,6.852-4.383,5.612-7.093
c0.236,0.565,1.439,4.257-8.379,5.826c-10.629,1.695-27.472,3.839-27.472,3.839s10.048,7.856,23.863,6.779
c13.813-1.056,27.837-5.304,30.803-5.952c2.332-0.481,7.359-0.858,9.462-1.005c0.581,0.356,3.598,2.427,0.319,5.9
c-3.62,3.829-20.615,9.573-30.814,11.267c-10.2,1.695-32.686,1.328-32.686,1.328s21.425,2.918,33.325,1.433
c11.899-1.497,27.199-9.353,27.199-9.353s0.68,0,1.402,0.084c-9.348,6.455-23.643,13.945-40.705,14.96
c-30.62,1.81-73.386-22.439-95.825-47.609c-22.44-25.17-81.577-112.815-93.095-144.365c-7.479-20.441-10.613-31.195-11.894-36.238
c-2.208,1.58-3.469,2.678-3.469,2.678s2.072,12.146,15.059,46.008c11.979,31.217,82.226,136.865,120.425,162.39
c31.954,21.362,64.896,23.444,88.319,15.326c18.988-6.57,31.766-16.854,31.62-21.477
C712.661,705.273,711.808,700.816,703.545,703.358z"/>
<path fill="#BA6B43" d="M627.842,324.776c0,0-0.136,5.786-6.052,19.438c-5.91,13.641-15.922,37.283-15.922,37.283l-3.028-4.687
c0,0,6.973-10.471,16.068-31.383c4.576-10.545,7.568-23.696,7.568-23.696L627.842,324.776z"/>
<path fill="#F6D4C0" d="M824.962,673.23c0,0,5.006,8.631,2.956,9.541c-2.04,0.92-6.135,1.381-7.501-1.81
C819.057,677.77,824.962,673.23,824.962,673.23z"/>
<path fill="#F6D4C0" d="M665.016,699.749c0,0-2.108-6.224,1.537-6.915c3.651-0.69,8.636,0.534,9.018,2.595
C675.953,697.5,665.016,699.749,665.016,699.749z"/>
<path fill="#ECB08E" d="M695.17,713.401c0,0-1.056-3.034,1.831-4.393c2.877-1.36,7.726-2.731,7.883-1.517
C705.035,708.704,699.422,712.491,695.17,713.401z"/>
<path fill="#3F5E35" d="M616.333,392.586c0,0.575-0.323,1.047-0.726,1.047c-0.393,0-0.717-0.471-0.717-1.047
c0-0.586,0.324-1.067,0.717-1.067C616.01,391.519,616.333,392,616.333,392.586z"/>
<path fill="#3F5E35" d="M615.083,395.379c0,0.586-0.323,1.057-0.721,1.057c-0.398,0-0.722-0.471-0.722-1.057
c0-0.575,0.323-1.067,0.722-1.067C614.76,394.312,615.083,394.804,615.083,395.379z"/>
<path fill="#ECB08E" d="M700.395,715.075c0,0,0.078-0.011,0.236-0.042c0.612-0.116,2.353-0.523,4.022-1.486
c2.081-1.203,4.702-4.487,4.159-4.697C708.262,708.621,698.753,713.977,700.395,715.075z"/>
<g>
<rect x="775.476" y="671.012" fill="#FFFFFF" width="37.362" height="27.9"/>
<path fill="#2F2A2F" d="M778.87,695.826h1.281v-22.303h-1.281V695.826z M799.678,695.826h1.036v-22.303h-1.036V695.826z
M788.358,695.826h1.272v-22.303h-1.272V695.826z M794.986,695.826h1.27v-22.303h-1.27V695.826z M790.989,695.826h2.38v-22.303
h-2.38V695.826z M807.821,673.523v22.303h1.277v-22.303H807.821z M804.637,695.826h1.265v-22.303h-1.265V695.826z
M780.721,695.826h0.294v-22.303h-0.294V695.826z M782.935,695.826h0.298v-22.303h-0.298V695.826z M784.477,695.826h0.299
v-22.303h-0.299V695.826z M781.768,696.067h0.298v-22.283h-0.298V696.067z M802.518,696.067h0.35v-22.283h-0.35V696.067z
M806.88,696.067h0.351v-22.283h-0.351V696.067z M786.737,695.826h0.298v-22.303h-0.298V695.826z M798.653,695.826h0.298v-22.303
h-0.298V695.826z M794.285,695.826h0.303v-22.303h-0.303V695.826z"/>
</g>
<g>
<rect x="774.476" y="561.316" fill="#FFFFFF" width="31.997" height="23.883"/>
<path fill="#2F2A2F" d="M777.379,582.552h1.094V563.46h-1.094V582.552z M795.2,582.552h0.884V563.46H795.2V582.552z
M785.502,582.552h1.088V563.46h-1.088V582.552z M791.178,582.552h1.088V563.46h-1.088V582.552z M787.752,582.552h2.045V563.46
h-2.045V582.552z M802.173,563.46v19.091h1.093V563.46H802.173z M799.442,582.552h1.094V563.46h-1.094V582.552z M778.965,582.552
h0.251V563.46h-0.251V582.552z M780.857,582.552h0.262V563.46h-0.262V582.552z M782.187,582.552h0.256V563.46h-0.256V582.552z
M779.864,582.761h0.256V563.68h-0.256V582.761z M797.633,582.761h0.298V563.68h-0.298V582.761z M801.367,582.761h0.309V563.68
h-0.309V582.761z M784.116,582.552h0.257V563.46h-0.257V582.552z M794.316,582.552h0.261V563.46h-0.261V582.552z
M790.586,582.552h0.252V563.46h-0.252V582.552z"/>
</g>
<g>
<rect x="744.453" y="468.053" fill="#FFFFFF" width="31.996" height="23.894"/>
<path fill="#2F2A2F" d="M747.361,489.289h1.093v-19.081h-1.093V489.289z M765.182,489.289h0.884v-19.081h-0.884V489.289z
M755.49,489.289h1.082v-19.081h-1.082V489.289z M761.16,489.289h1.093v-19.081h-1.093V489.289z M757.738,489.289h2.041v-19.081
h-2.041V489.289z M772.154,470.209v19.081h1.088v-19.081H772.154z M769.424,489.289h1.087v-19.081h-1.087V489.289z
M748.945,489.289h0.252v-19.081h-0.252V489.289z M750.839,489.289h0.256v-19.081h-0.256V489.289z M752.162,489.289h0.257
v-19.081h-0.257V489.289z M749.851,489.52h0.251v-19.091h-0.251V489.52z M767.608,489.52h0.299v-19.091h-0.299V489.52z
M771.348,489.52h0.299v-19.091h-0.299V489.52z M754.093,489.289h0.261v-19.081h-0.261V489.289z M764.303,489.289h0.252v-19.081
h-0.252V489.289z M760.568,489.289h0.251v-19.081h-0.251V489.289z"/>
</g>
</g>
</g>
</svg>
</div>
<div class="b text-xl mb-4 text-center">Delivery</div>
<div class="b mb-24 text-gray-700 text-center">Sit back and relax. After your shoes are<br>
successfully cleaned by our experts we<br>
will deliver them back to you.</div>
</div>
</div>
<div class="flex justify-center">
<button type="button" class="w-72 mt-3 md:mt-3 focus outline-none h-12 bg-black text-white flex justify-between">
<div class="ml-8 mt-3 font-semibold">
DOWNLOAD APP NOW
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="mr-8 mt-3 h-7 w-7" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 9l3 3m0 0l-3 3m3-3H8m13 0a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
</button>
</div>
<div class="b mt-28 text-4xl text-center">
BRANDS WE SERVICE
</div>
<div class="grid gap-3 sm:grid-cols-1 md:grid-cols-3 lg:grid-cols-4 gap-6">
<div class="flex justify-center">
<svg width="192.756px" height="192.756px" style="background-color:#c0e900" viewBox="0 0 192.756 192.756" xmlns="http://www.w3.org/2000/svg"><g fill-rule="evenodd" clip-rule="evenodd"><path fill="#fff" d="M0 0h192.756v192.756H0V0z"/><path d="M42.741 71.477c-9.881 11.604-19.355 25.994-19.45 36.75-.037 4.047 1.255 7.58 4.354 10.256 4.46 3.854 9.374 5.213 14.264 5.221 7.146.01 14.242-2.873 19.798-5.096 9.357-3.742 112.79-48.659 112.79-48.659.998-.5.811-1.123-.438-.812-.504.126-112.603 30.505-112.603 30.505a24.771 24.771 0 0 1-6.524.934c-8.615.051-16.281-4.731-16.219-14.808.024-3.943 1.231-8.698 4.028-14.291z"/></g></svg>
</div>
<div class="flex justify-center">
<svg version="1.1" id="katman_1" class="w-48 h-48 ml-4" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 560 400" style="enable-background:new 0 0 560 400;" xml:space="preserve">
<style type="text/css">
.st0{fill:#75B709;}
</style>
<path class="st0" d="M360.4,155.6c-11.3,1.4-20.5,5.6-27.7,12.6c-10.8,10.3-15.3,25.7-12.2,41.4c1.9,9.7,7,18.4,14.5,24.6
c3.5,2.9,8.3,5.7,12.7,7.4c6.7,2.6,15,3.8,22.5,3.3c10.4-0.7,17.5-3.1,24.7-8.5c2.4-1.8,7.5-6.8,8.5-8.4c2.1-3.3,2.5-7.2,1.3-10.8
c-1.8-5.1-6.9-8.5-12.3-8.1c-3.5,0.2-5.3,1.1-8.7,4.4c-5.1,4.9-8.6,6.8-13.5,7.6c-4,0.6-8.8,0.1-12.1-1.4
c-5.4-2.4-9.1-7.6-10.3-14.5c-0.4-2.3-0.5-7.5-0.1-9.8c1.3-8,6.1-13.7,13.2-15.5c8.3-2.2,16.7,0.7,21.9,7.5c1.6,2,2.9,3.2,4.8,4.1
c3.7,1.8,7.5,1.8,11.1,0c4.3-2.1,6.8-6.2,6.9-11c0-3.3-0.9-5.8-3.2-8.5c-6.6-8.1-13.6-12.9-22.4-15.1c-4-1-6.9-1.4-12.4-1.5
C364,155.3,362,155.4,360.4,155.6L360.4,155.6z M449.7,155.4c-6.3,0.6-10.6,1.7-14.8,3.6c-7.3,3.5-11.7,8.9-13.5,16.8
c-0.5,2.2-0.7,8.4-0.4,10.9c1.3,9.8,7.3,16.9,17.8,21.1c2.5,1,5.8,2,11.4,3.3c11.9,2.9,13.4,3.4,14.3,5.2c0.5,1,0.5,2.9,0,3.9
c-1.1,2.2-3.5,3-9.4,3.1c-8.2,0.3-13.3-1.3-20.5-6.5c-2.7-1.9-3.9-2.5-6.3-2.8c-4.8-0.7-9.7,2.5-11.4,7.3c-0.6,1.7-0.6,5,0,6.8
c0.4,1.2,1.5,3.1,2.4,4c1.4,1.6,6.1,5,9.3,6.7c9,4.9,21.4,6.9,34.2,5.5c14-1.5,22.9-7.6,26.1-17.8c1-3.2,1.5-6.7,1.5-10.3
c0-7.1-2.2-12.6-6.9-17.1c-5-4.8-11.4-7.7-22.4-10.2c-10-2.2-12.1-2.8-13.9-4c-1.6-1-2.1-2-2.1-3.9c0-1.2,0.1-1.5,0.6-2.2
c1-1.5,2.7-2.2,5.9-2.6c6.5-0.8,13.4,1.4,19.4,6.3c2.5,2,4.6,2.8,7.3,2.8c3.5,0,6.5-1.6,8.6-4.5c2.3-3.2,2.6-7.1,0.9-10.7
c-0.9-1.8-2.2-3.3-4.8-5.5c-6.4-5.4-13.9-8.4-23.5-9.4C457.6,155.3,451.4,155.3,449.7,155.4L449.7,155.4z M252.2,155.5
c-20.2,2.1-36,15.1-40.6,33.4c-1.6,6.3-1.8,13.3-0.7,19.6c2.8,15.2,12.7,27.1,27.5,33c12.1,4.8,27.2,4.7,39.2-0.2
c14.5-6,24.2-18,26.8-33c1.1-6.2,0.8-13.3-0.8-19.6c-1.3-5.3-4-10.9-7.4-15.4c-1.7-2.3-6.2-6.7-8.6-8.5c-7-5.2-15.3-8.3-24.8-9.3
C260.3,155.3,254.6,155.3,252.2,155.5L252.2,155.5z M75.8,155.4c-0.3,0-1.4,0.2-2.5,0.3c-13.7,1.6-25.9,8.8-33,19.5
c-6.3,9.6-8.7,21.6-6.5,33.6c3.6,19.4,18.9,33.3,39.7,35.8c3.1,0.4,9.7,0.4,12.9,0.1c9.4-1,16.6-3.9,23.2-9.2c2-1.6,5-4.5,6.5-6.3
c4.9-5.9,3.2-15-3.6-18.6c-3.7-2-7.5-2-11.3-0.1c-1.4,0.7-2.1,1.2-4.1,3.1c-4.1,4-7.3,6-11.3,7.1c-1.8,0.5-2.3,0.5-5.5,0.5
c-4.3,0-5.9-0.3-9.1-1.9c-4.3-2.1-7.3-5.6-8.9-10.5c-1-3.1-1.4-5.3-1.4-8.9c0-4.4,0.7-7.8,2.3-11c3.2-6.5,9.1-9.9,16.9-9.8
c6.5,0,12.3,3.1,16.5,8.6c4.6,6.2,13.4,6.8,18.8,1.4c2.6-2.6,3.7-5.2,3.6-8.9c0-4.2-1.2-6.5-6.2-11.7c-5.8-6.2-12.7-10.1-20.4-11.9
c-4-0.9-6.1-1.1-11.2-1.2C78.6,155.4,76.2,155.4,75.8,155.4z M145.7,156.7c-4.9,0.8-8.6,3.6-10.7,8c-1.3,2.8-1.3,0.8-1.2,36.6
l0.1,32.3l0.6,1.7c1.5,4.3,4.9,7.5,9.4,8.9c1.9,0.6,5.3,0.6,7.3,0.1c3.8-1,7.3-3.9,9-7.4c1.4-2.8,1.3-2.5,1.5-15.8
c0.1-11.2,0.2-12.2,0.6-14.4c0.5-2.8,0.9-4.2,1.6-6.1c2.8-7.7,8.2-12.8,15.3-14.3c2-0.4,3.7-0.3,6.5,0.3c3.4,0.7,7,0.8,9,0.1
c2.1-0.7,4-1.9,5.7-3.7c2.7-2.7,3.9-5.8,3.9-9.6c0-2.5-0.4-4.1-1.5-6.2c-1.5-3-3.4-4.8-6.8-6.5c-3.4-1.7-4.6-1.9-9.2-1.9
c-4.4,0-6.5,0.3-9.9,1.4c-5,1.6-10,4.5-13.8,8.1c-0.7,0.7-1.3,1.2-1.4,1.2c-0.1,0-0.1-0.3-0.1-0.6c0-1.8-1.6-5.3-3.2-7.3
c-1.8-2.1-4.5-3.8-7.1-4.5C149.6,156.6,147.1,156.5,145.7,156.7L145.7,156.7z M262,179.1c7.7,1.5,13.1,7.3,14.6,15.9
c0.9,5.2,0.4,11.3-1.5,15.6c-1.9,4.5-5.4,8-9.6,9.8c-2.5,1-4.3,1.3-7.9,1.3c-2.9,0-3.6-0.1-5.1-0.5c-7.6-2-12.5-7.7-14.1-16.3
c-0.4-2.4-0.4-7.1,0-9.6c1.7-9.7,7.7-15.6,16.8-16.6C256.9,178.6,260.1,178.8,262,179.1L262,179.1z M518.5,167.3v4.7
c0,0.7-0.2,1.3-0.5,1.7c-0.3,0.4-0.8,0.6-1.4,0.6c-0.5,0-1-0.2-1.3-0.6c-0.3-0.4-0.5-0.9-0.5-1.7v-5.6c0-0.9,0-1.6-0.1-2.1
c-0.1-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.3-0.5c-1.2,0-1.9,0.4-2.3,1.2c-0.4,0.8-0.6,1.9-0.6,3.4v4.8c0,0.7-0.2,1.3-0.5,1.7
c-0.3,0.4-0.8,0.6-1.3,0.6c-0.5,0-1-0.2-1.3-0.6c-0.3-0.4-0.5-0.9-0.5-1.7v-10.1c0-0.7,0.2-1.2,0.5-1.5c0.3-0.3,0.7-0.5,1.2-0.5
c0.5,0,0.9,0.2,1.2,0.5c0.3,0.3,0.5,0.8,0.5,1.3v0.3c0.6-0.7,1.3-1.3,2-1.6c0.7-0.3,1.5-0.5,2.4-0.5c0.9,0,1.7,0.2,2.3,0.5
c0.6,0.4,1.2,0.9,1.6,1.6c0.6-0.7,1.2-1.3,1.9-1.6c0.7-0.4,1.5-0.5,2.3-0.5c1,0,1.8,0.2,2.5,0.6c0.7,0.4,1.2,0.9,1.6,1.6
c0.3,0.6,0.5,1.6,0.5,3v6.9c0,0.7-0.2,1.3-0.5,1.7c-0.3,0.4-0.8,0.6-1.4,0.6c-0.5,0-1-0.2-1.3-0.6c-0.3-0.4-0.5-0.9-0.5-1.7v-6
c0-0.8,0-1.4-0.1-1.8c-0.1-0.5-0.2-0.8-0.5-1.2c-0.3-0.3-0.7-0.5-1.3-0.5c-0.5,0-0.9,0.1-1.3,0.4c-0.4,0.3-0.8,0.6-1,1.1
C518.7,164.7,518.5,165.8,518.5,167.3L518.5,167.3z M501.3,162.7v6.5c0,0.6,0,1,0.1,1.3c0,0.3,0.1,0.5,0.3,0.7s0.4,0.3,0.8,0.3
c0.2,0,0.5,0,0.9-0.1c0.4-0.1,0.6-0.1,0.8-0.1c0.3,0,0.5,0.1,0.8,0.3c0.2,0.2,0.3,0.5,0.3,0.8c0,0.6-0.3,1-0.9,1.3
c-0.6,0.3-1.5,0.5-2.7,0.5c-1.1,0-2-0.2-2.5-0.6c-0.6-0.4-1-0.9-1.1-1.5c-0.2-0.7-0.3-1.5-0.3-2.6v-6.8h-0.5c-0.5,0-0.9-0.1-1.2-0.4
c-0.3-0.2-0.4-0.5-0.4-0.9c0-0.4,0.1-0.7,0.4-0.9c0.3-0.2,0.7-0.4,1.2-0.4h0.4V158c0-0.6,0-1,0-1.3c0-0.3,0.1-0.6,0.3-0.8
c0.1-0.2,0.3-0.4,0.6-0.6s0.6-0.2,0.9-0.2c0.5,0,0.9,0.2,1.2,0.5c0.2,0.2,0.4,0.5,0.5,0.8c0.1,0.3,0.1,0.8,0.1,1.4v2.4h1.3
c0.5,0,0.9,0.1,1.2,0.4c0.3,0.2,0.4,0.5,0.4,0.9c0,0.5-0.2,0.8-0.6,1c-0.4,0.2-0.9,0.3-1.6,0.3H501.3z"/>
</svg>
</div>
<div class="flex justify-center">
<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 302 204.27155" class="h-48 w-48 ml-12 bg-none" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<g>
<g transform="matrix(21.955 0 0 -21.955 -2043.1 10481)">
<g clip-path="url(#d)">
<g transform="translate(105.72 468.11)">
<path d="m0 0c-0.639 0-1.018 0.327-1.047 0.798h0.611c0-0.157 0.087-0.366 0.465-0.379 0.262 0 0.407 0.157 0.407 0.275-0.029 0.183-0.262 0.196-0.494 0.236-0.262 0.038-0.465 0.091-0.611 0.156-0.203 0.105-0.32 0.328-0.32 0.563 0 0.419 0.35 0.746 0.96 0.746 0.582 0 0.96-0.301 0.988-0.759h-0.581c0 0.117-0.029 0.314-0.378 0.314-0.233 0-0.378-0.039-0.407-0.209 0-0.236 0.494-0.223 0.872-0.314 0.349-0.092 0.582-0.314 0.582-0.629 0-0.576-0.465-0.798-1.047-0.798"/>
</g>
</g>
</g>
<g transform="matrix(21.955 0 0 -21.955 33.537 118.8)">
<path d="m0 0 2.006 1.165 1.076-1.846h-2.704"/>
</g>
<g transform="matrix(21.955 0 0 -21.955 126.15 202.12)">
<path d="m0 0v2.33" stroke="#000" stroke-width="0.587"/>
</g>
<g transform="matrix(21.955 0 0 -21.955 -2043.1 10481)">
<g clip-path="url(#c)">
<g transform="translate(93.655 469.31)">
<path d="m0 0c0-0.366 0.32-0.667 0.668-0.667 0.379 0 0.669 0.301 0.669 0.667 0 0.353-0.29 0.667-0.669 0.667-0.348 0-0.668-0.314-0.668-0.667m0.639-1.204c-0.639 0-1.191 0.537-1.191 1.204s0.552 1.191 1.191 1.191c0.262 0 0.495-0.066 0.698-0.209v0.183h0.582v-2.316h-0.582v0.144c-0.174-0.131-0.436-0.197-0.698-0.197"/>
</g>
</g>
</g>
<g transform="matrix(21.955 0 0 -21.955 197.59 133.74)">
<path d="m0 0-2.791 4.868 2.006 1.178 3.489-6.046"/>
</g>
<g transform="matrix(21.955 0 0 -21.955 -2043.1 10481)">
<g clip-path="url(#b)">
<g transform="translate(96.33 469.31)">
<path d="m0 0c0-0.366 0.291-0.667 0.669-0.667 0.348 0 0.669 0.301 0.669 0.667 0 0.353-0.321 0.667-0.669 0.667-0.378 0-0.669-0.314-0.669-0.667m0.64-1.204c-0.669 0-1.192 0.537-1.192 1.204s0.523 1.191 1.192 1.191c0.261 0 0.494-0.066 0.698-0.209v0.981h0.581v-3.114h-0.581v0.144c-0.204-0.131-0.437-0.197-0.698-0.197"/>
</g>
</g>
</g>
<g transform="matrix(21.955 0 0 -21.955 85.247 73.119)">
<path d="m0 0 2.035 1.151 2.239-3.912h-2.123v-0.576h-0.581v0.576"/>
</g>
<g transform="matrix(21.955 0 0 -21.955 -2043.1 10481)">
<g clip-path="url(#a)">
<g transform="translate(106.39 470.7)">
<path d="m0 0c-0.146 0-0.291 0.131-0.291 0.288s0.145 0.288 0.291 0.288c0.174 0 0.291-0.131 0.291-0.288s-0.117-0.288-0.291-0.288m0 0.536c-0.146 0-0.233-0.117-0.233-0.248s0.087-0.249 0.233-0.249c0.145 0 0.232 0.118 0.232 0.249s-0.087 0.248-0.232 0.248"/>
</g>
<g transform="translate(106.45 470.83)">
<path d="m0 0-0.058 0.131h-0.058v-0.131h-0.044v0.314h0.131c0.029 0 0.087-0.04 0.087-0.092s-0.029-0.078-0.058-0.091l0.058-0.131m-0.116 0.274h-0.058v-0.104h0.058c0.058 0 0.058 0.013 0.058 0.052 0 0.027 0 0.052-0.058 0.052"/>
</g>
<g transform="translate(102.55 469.31)">
<path d="m0 0c0-0.366 0.291-0.667 0.669-0.667 0.349 0 0.668 0.301 0.668 0.667 0 0.353-0.319 0.667-0.668 0.667-0.378 0-0.669-0.314-0.669-0.667m0.639-1.204c-0.668 0-1.191 0.537-1.191 1.204s0.523 1.191 1.191 1.191c0.262 0 0.495-0.066 0.698-0.209v0.183h0.553v-2.316h-0.553v0.144c-0.203-0.131-0.436-0.197-0.698-0.197"/>
</g>
<g transform="translate(99.877 469.31)">
<path d="m0 0c0-0.366 0.32-0.667 0.669-0.667 0.378 0 0.669 0.301 0.669 0.667 0 0.353-0.291 0.667-0.669 0.667-0.349 0-0.669-0.314-0.669-0.667m1.338 1.963h0.581v-3.114h-0.581v0.144c-0.175-0.131-0.408-0.197-0.669-0.197-0.669 0-1.221 0.537-1.221 1.204s0.552 1.191 1.221 1.191c0.261 0 0.494-0.066 0.669-0.209v0.981z"/>
</g>
</g>
</g>
</g>
</svg>
</div>
<div class="flex justify-center">
<svg version="1.1" id="Layer_1" class="h-48 w-48 ml-12" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 106.4 48.5" style="enable-background:new 0 0 106.4 48.5;" xml:space="preserve">
<style type="text/css">
.st0{fill:#292929;}
</style>
<g transform="matrix(1.25 0 0 -1.25 0 765)">
<g>
<path class="st0" d="M21.8,592.6c0,5.1,1.3,9.2,4.1,12.5v2.1c0,0.4,0.1,0.7,0.2,0.9c0.2,0.2,0.5,0.4,0.9,0.5v0.6h-7.2v-0.6
c0.4-0.1,0.7-0.3,0.9-0.5s0.2-0.5,0.2-0.9v-13.3c0-1.5-0.1-2.7-0.2-3.4c-0.2-0.7-0.4-1.4-0.8-1.8c-1.1-1.3-3.1-2-5.9-2
s-4.7,0.7-5.9,2c-0.4,0.5-0.7,1.1-0.9,1.8C7,591.2,7,592.4,7,593.9v13.4c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.4,0.9,0.5v0.6H0.6
v-0.6c0.4-0.1,0.7-0.3,0.9-0.5s0.2-0.5,0.2-0.9v-15c0-1.9,0.2-3.5,0.7-4.9s1.3-2.5,2.5-3.3c2.1-1.4,5-2.1,8.9-2.1
c4.2,0,7.4,0.8,9.3,2.4C22.1,586.8,21.8,589.6,21.8,592.6 M82.7,594.2c0.2,0.2,0.5,0.4,1,0.5v0.6H70.9c-0.4,0-0.7,0.1-0.9,0.3
c-0.2,0.2-0.4,0.5-0.5,1h-0.6v-6.5h0.6c0.1,0.5,0.3,0.8,0.5,1s0.5,0.3,0.9,0.3h6.7v-3.8c0,0-1.2-2.4-8.8-2.7
c-4.5-0.2-7.4,1.8-7.4,1.8c0-0.1,0-0.1,0-0.2v-5.2c0,0,2.4-1.1,7.5-1.1c4.8,0,10.2,1.4,14.8,5.3v0.5c-0.5,0.1-0.8,0.3-1,0.5
s-0.3,0.5-0.3,0.9v5.7C82.4,593.7,82.5,594,82.7,594.2 M62.2,602.6c1.8,1.6,4.2,2.4,7,2.4c1.4,0,2.8-0.2,4.4-0.6
c1.5-0.4,2.7-1,3.5-1.6c0.4-0.3,0.6-0.5,0.7-0.7s0.2-0.5,0.2-0.9l0.6-0.3l3.1,6.6l-0.5,0.3c-0.4-0.3-0.7-0.5-1-0.5
c-0.4,0-1,0.2-1.9,0.5c-1.7,0.7-3.3,1.2-4.6,1.5c-1.4,0.3-2.8,0.4-4.3,0.4c-5.8,0.3-8.8-1.5-8.8-1.5l-4.4-9.5l-1.8,0.6
c0,0,0,0.9-0.1,0.9c-0.4-0.4-0.8-2.3-0.9-4.9c0-0.6,0.1-2.1,0.1-2.1h5.8c0,0-0.1,1.3-0.1,2.1C59,598.4,60.1,600.8,62.2,602.6"/>
<path class="st0" d="M54.2,587.4h-8.5c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.5-0.7-0.6-1.4H43v8.7h0.8c0.2-0.7,0.4-1.1,0.6-1.4
c0.3-0.2,0.6-0.4,1.2-0.4H62v-0.8c-0.6-0.2-1-0.4-1.3-0.7s-0.4-0.7-0.4-1.3v-7.6c0-0.6,0.1-1,0.4-1.3c0.2-0.3,0.6-0.5,1.3-0.7
v-0.6c-6.5-4-12.9-6-19-6c-5.6,0-10.1,1.4-13.6,4.2c-4.4,3.6-6.7,8.5-6.7,14.9c0,5.9,2,10.6,5.9,14.1c3.7,3.3,8.7,5,14.9,5
c2,0,3.8-0.2,5.6-0.6c1.7-0.4,3.7-1,5.9-2c1.1-0.5,2.1-0.8,2.6-0.8c0.4,0,0.8,0.2,1.2,0.6l0.7-0.4l-4-8.8l-0.8,0.3
c0,0.6-0.3,1.1-0.4,1.4c-0.1,0.3-0.4,0.6-0.9,0.9c-1,0.8-2.5,1.5-4.5,2.1s-3.9,0.9-5.6,0.9c-3.6,0-6.6-1.1-9-3.2
c-2.7-2.5-4-5.7-4-9.7c0-3.9,1.3-7,3.9-9.4c2.4-2.2,5.5-3.3,9.5-3.3c1.9,0,3.8,0.2,5.6,0.7s3.4,1.1,4.8,1.9L54.2,587.4L54.2,587.4
z"/>
</g>
</g>
</svg>
</div>
</div>
</div>
<div class="px-15 mt-16 grid md:ml-24 sm:grid-cols-1 md:grid-cols-3">
<div class="">
<img src="https://images.pexels.com/photos/2529147/pexels-photo-2529147.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" class="w-full rounded-2xl md:w-72 md:h-78 md:rounded-2xl">
</div>
<div class="col-span-2 md:ml-16">
<h1 class="mt-7 text-2xl font-bold text-slate-800 md:text-2xl font-bold text-slate-800">ABOUT US</h1>
<p class="b mt-9 text-gray-700">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod<br>
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,<br>
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo<br>
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum<br>
dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,<br>
sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div>
<div class="mt-24">
<h1 class="b text-center text-3xl">OUR CUSTOMERS LOVE US</h1>
<p class="b text-center text-gray-600 mt-5">We clean and restore your favorite sneakers using the safest<br>
and best practices in the industry.
</div>
<div class="mt-8 px-24 gap-6 grid sm:grid-cols-1 md:grid-cols-2 lg:grid-cols-4">
<div class="bg-neutral-100 rounded-2xl">
<div class="flex justify-center mt-5">
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
</div>
<h1 class="b text-center mt-2">Great Quality</h1>
<p class="b text-center text-gray-600 mt- mb-4">The shoes are cleaned with high<br>
quality service.</p>
<div class="flex justify-center mb-4">
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 mt-4" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</div>
<div class="b text-center text-gray-600 mt-3 mb-4">
Srujan
</div>
</div>
</div>
<div class="bg-neutral-100 rounded-2xl">
<div class="flex justify-center mt-5">
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
</div>
<h1 class="b text-center mt-2">Great Quality</h1>
<p class="b text-center text-gray-600 mt- mb-4">The shoes are cleaned with high<br>
quality service.</p>
<div class="flex justify-center mb-4">
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 mt-4" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</div>
<div class="b text-center text-gray-600 mt-3 mb-4">
Sarvagnya
</div>
</div>
</div>
<div class="bg-neutral-100 rounded-2xl">
<div class="flex justify-center mt-5">
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
</div>
<h1 class="b text-center mt-2">Great Quality</h1>
<p class="b text-center text-gray-600 mt- mb-4">The shoes are cleaned with high<br>
quality service.</p>
<div class="flex justify-center mb-4">
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 mt-4" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</div>
<div class="b text-center text-gray-600 mt-3 mb-4">
Ashwith
</div>
</div>
</div>
<div class="bg-neutral-100 rounded-2xl">
<div class="flex justify-center mt-5">
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
</div>
<h1 class="b text-center mt-2">Great Quality</h1>
<p class="b text-center text-gray-600 mt- mb-4">The shoes are cleaned with high<br>
quality service.</p>
<div class="flex justify-center mb-4">
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 mt-4" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</div>
<div class="b text-center text-gray-600 mt-3 mb-4">
Kathleen
</div>++++++++++++++++++++++++++++++++++++++++++
</div>
</div>
</div>
<footer class="flex mt-14 justify-around">
<div class="">
<div class="">
<div class="mb-5">
<div class="b box ml-16 text-center font-bold block">
S U D S
</div>
<div class="k text-center font-bold">
SNEAKER CARE
</div>
</div>
<span class="b text-gray-700 ml-5">Sneaker Cleaning Pro’s</span>
<div class="flex justify-between mt-7 space-x-5 mb-5">
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" width="40px" height="40px" fill="currentColor" class="transition ease-in-out hover:scale-110 cursor-pointer" viewBox="0 0 16 16">
<path d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z"/>
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" width="40px" height="40px" fill="currentColor" class="transition ease-in-out hover:scale-110 cursor-pointer" viewBox="0 0 16 16">
<path d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951z"/>
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" width="40px" height="40px" fill="currentColor" class="transition ease-in-out hover:scale-110 cursor-pointer" viewBox="0 0 16 16">
<path d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z"/>
</svg>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" width="40px" height="40px" fill="currentColor" class="transition ease-in-out hover:scale-110 cursor-pointer" viewBox="0 0 16 16">
<path d="M8.051 1.999h.089c.822.003 4.987.033 6.11.335a2.01 2.01 0 0 1 1.415 1.42c.101.38.172.883.22 1.402l.01.104.022.26.008.104c.065.914.073 1.77.074 1.957v.075c-.001.194-.01 1.108-.082 2.06l-.008.105-.009.104c-.05.572-.124 1.14-.235 1.558a2.007 2.007 0 0 1-1.415 1.42c-1.16.312-5.569.334-6.18.335h-.142c-.309 0-1.587-.006-2.927-.052l-.17-.006-.087-.004-.171-.007-.171-.007c-1.11-.049-2.167-.128-2.654-.26a2.007 2.007 0 0 1-1.415-1.419c-.111-.417-.185-.986-.235-1.558L.09 9.82l-.008-.104A31.4 31.4 0 0 1 0 7.68v-.123c.002-.215.01-.958.064-1.778l.007-.103.003-.052.008-.104.022-.26.01-.104c.048-.519.119-1.023.22-1.402a2.007 2.007 0 0 1 1.415-1.42c.487-.13 1.544-.21 2.654-.26l.17-.007.172-.006.086-.003.171-.007A99.788 99.788 0 0 1 7.858 2h.193zM6.4 5.209v4.818l4.157-2.408L6.4 5.209z"/>
</svg>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>