-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprocess.html
More file actions
815 lines (808 loc) · 62.1 KB
/
process.html
File metadata and controls
815 lines (808 loc) · 62.1 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title>Decok</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Nunito:wght@600&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&family=Vollkorn:wght@600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header class="container">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand logo text-purple" href="index.html">Decok</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarTogglerDemo01"
aria-controls="navbarTogglerDemo01"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo01">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="kitchen-designs.html"
>Kitchens</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="wardrobes.html">Wardrobes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="paint.html">Texture Paint</a>
</li>
</ul>
<a href="#" class="call font-weight-bold my-2 my-lg-0"
>Call: 0779 403771</a
>
</div>
</nav>
</header>
<div class="process-det">
<div class="container">
<div class="row">
<div class="col-md-4">
<h1 class="pr-4 pt-5">Our Kitchen design process.</h1>
<p class="text-muted pb-3 pr-3">
Our kitchen design process covers everything from understanding
the current kitchen design trends to dynamic space design.
</p>
<div class="pb-5">
<a href="#" class="call">0779 403771</a>
</div>
<div class="side-bg mt-5 mr-3 mb-4 section-labels"></div>
</div>
<div class="col-md-8">
<div class="row">
<div class="col-md-12 col-lg-12">
<h1 class="">01.</h1>
<h3 class="font-weight-bold">Deciding what you want</h3>
<div class="decide-bg mt-3"></div>
<p class="text-muted mt-3 mb-5">
The first step to a successful kitchen design is to think
about what you want in your dream kitchen. To help you
understand some of the key decisions you will need to make, we
have prepared a simple checklist to walk you through getting
started.<br /><br />
We also suggest you get in touch or visit one of our kitchen
design office so you can get a walkthrough of the popular
design trends, according to your space, and also ask our
kitchen professionals any questions you have about colour,
design, timeframes and potential costs.
</p>
</div>
<div class="col-md-12 col-lg-6">
<h1 class="">02.</h1>
<h3 class="font-weight-bold">Design briefing</h3>
<div class="design-brief-bg mt-3"></div>
<p class="text-muted mt-3 mb-5">
Once you have talked to our design experts and worked out what
you want, the next step is to meet our designer and organising
an estimate quote. At this initial meeting, the designer
collects information about what you want in your new kitchen,
or how you want to re-design your existing kitchen.
</p>
</div>
<div class="col-md-12 col-lg-6">
<h1 class="">03.</h1>
<h3 class="font-weight-bold">Check measurements</h3>
<div class="measure-bg mt-3"></div>
<p class="text-muted mt-3 mb-5">
You will be contacted by our customer support team to make an
appointment at your home so we can take the final measurements
and selections confirmed. We will keep you advised of any
timing impacts as your project progresses. In case you already
have your own accurate measurements, we will proceed with
those.
</p>
</div>
<div class="col-md-12">
<h1 class="">04.</h1>
<h3 class="font-weight-bold">Design stage and quote</h3>
<div class="deliver-bg mt-3"></div>
<div class="row">
<div class="col-md-12 col-lg-6">
<p class="text-muted mt-3 mb-5">
At this stage, the designer will present the concept of
your new kitchen. They will have drawn up a floor plan,
elevations and 3D images for you to review plus provide an
initial quote.
<br /><br />
This meeting is held at our showroom so that we have easy
access to a range of material for you to consider and
select from, colours, bench tops, handles etc. Adjustments
to your plans can also be made at this meeting.
</p>
</div>
<div class="col-md-12 col-lg-6">
<p class="text-muted mt-3 mb-5">
At the end of this meeting, you may be happy to proceed or
prefer to have further discussions with your Designer via
email, phone or face-to-face, until you are completely
happy with your design and selections. Once you are
comfortable with your final design, selections and
specifications, a contract will need to be signed and a
60% deposit paid before we can proceed. The designer then
takes the final plans and contract to our workshop to
explain your project with our production team.
</p>
</div>
</div>
</div>
<div class="col-md-12">
<h1 class="">05.</h1>
<h3 class="font-weight-bold">Site preparation</h3>
<p class="text-muted mt-3 mb-5">
If your existing kitchen needs to be removed this will happen
up to four days before we start installing your new kitchen.
We will take care to ensure the dust and debris is minimised.
Once the old kitchen has been removed, any plastering,
plumbing and electrical works that need to be adjusted will be
patched before installation. This can take approximately 1-2
days before installation. All these timeframes will be advised
upfront so you can plan ahead.
</p>
</div>
<div class="col-md-12 col-lg-6">
<h1 class="">06.</h1>
<h3 class="font-weight-bold">Delivery and Installation</h3>
<div class="install-bg mt-3"></div>
<p class="text-muted mt-3 mb-5">
Your next progress payment of 25% is due on delivery of the
joinery. Installation of your cabinetry is started and any
other subtrade work that needs to be completed. The granite
counter tops and splash back are also installed in this phase.
</p>
</div>
<div class="col-md-12 col-lg-6">
<h1 class="">07.</h1>
<h3 class="font-weight-bold">Inspection and handover</h3>
<div class="inspect-bg mt-3"></div>
<p class="text-muted mt-3 mb-5">
Your finished new kitchen is now quality inspected and ready
for handover. The completion 15% payment is due at handover.
<br /><br />
If you have any questions or concerns along the way contact
our customer service team and they can keep you up to date on
your kitchen progress. Any delays in payment may affect your
project timeline so these will be outlined upfront so you are
prepared.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container text-center py-5">
<div class="row">
<div class="col-sm-6 col-md-6 col-lg-3">
<div class="mb-3">
<div class="mb-4">
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="64"
height="64"
viewBox="0 0 172 172"
style="fill: #000000"
>
<defs>
<linearGradient
x1="72.5625"
y1="27.21094"
x2="72.5625"
y2="144.96106"
gradientUnits="userSpaceOnUse"
id="color-1_43632_gr1"
>
<stop offset="0" stop-color="#cd292d"></stop>
<stop offset="1" stop-color="#e74c3c"></stop>
</linearGradient>
<linearGradient
x1="126.3125"
y1="46.2895"
x2="126.3125"
y2="67.03969"
gradientUnits="userSpaceOnUse"
id="color-2_43632_gr2"
>
<stop offset="0" stop-color="#e68182"></stop>
<stop offset="1" stop-color="#f3a8a0"></stop>
</linearGradient>
<linearGradient
x1="126.3125"
y1="32.25"
x2="126.3125"
y2="150.00013"
gradientUnits="userSpaceOnUse"
id="color-3_43632_gr3"
>
<stop offset="0" stop-color="#cd292d"></stop>
<stop offset="1" stop-color="#e74c3c"></stop>
</linearGradient>
<linearGradient
x1="126.3125"
y1="27.21094"
x2="126.3125"
y2="144.96106"
gradientUnits="userSpaceOnUse"
id="color-4_43632_gr4"
>
<stop offset="0" stop-color="#cd292d"></stop>
<stop offset="1" stop-color="#e74c3c"></stop>
</linearGradient>
<linearGradient
x1="126.3125"
y1="27.21094"
x2="126.3125"
y2="144.96106"
gradientUnits="userSpaceOnUse"
id="color-5_43632_gr5"
>
<stop offset="0" stop-color="#cd292d"></stop>
<stop offset="1" stop-color="#e74c3c"></stop>
</linearGradient>
<linearGradient
x1="126.3125"
y1="27.21094"
x2="126.3125"
y2="144.96106"
gradientUnits="userSpaceOnUse"
id="color-6_43632_gr6"
>
<stop offset="0" stop-color="#cd292d"></stop>
<stop offset="1" stop-color="#e74c3c"></stop>
</linearGradient>
<linearGradient
x1="153.1875"
y1="27.21094"
x2="153.1875"
y2="144.96106"
gradientUnits="userSpaceOnUse"
id="color-7_43632_gr7"
>
<stop offset="0" stop-color="#cd292d"></stop>
<stop offset="1" stop-color="#e74c3c"></stop>
</linearGradient>
<linearGradient
x1="99.4375"
y1="27.21094"
x2="99.4375"
y2="144.96106"
gradientUnits="userSpaceOnUse"
id="color-8_43632_gr8"
>
<stop offset="0" stop-color="#cd292d"></stop>
<stop offset="1" stop-color="#e74c3c"></stop>
</linearGradient>
<linearGradient
x1="126.29906"
y1="27.21094"
x2="126.29906"
y2="144.96106"
gradientUnits="userSpaceOnUse"
id="color-9_43632_gr9"
>
<stop offset="0" stop-color="#cd292d"></stop>
<stop offset="1" stop-color="#e74c3c"></stop>
</linearGradient>
<linearGradient
x1="45.6875"
y1="27.21094"
x2="45.6875"
y2="144.96106"
gradientUnits="userSpaceOnUse"
id="color-10_43632_gr10"
>
<stop offset="0" stop-color="#cd292d"></stop>
<stop offset="1" stop-color="#e74c3c"></stop>
</linearGradient>
<linearGradient
x1="45.6875"
y1="27.21094"
x2="45.6875"
y2="144.96106"
gradientUnits="userSpaceOnUse"
id="color-11_43632_gr11"
>
<stop offset="0" stop-color="#cd292d"></stop>
<stop offset="1" stop-color="#e74c3c"></stop>
</linearGradient>
<linearGradient
x1="126.3125"
y1="50.55456"
x2="126.3125"
y2="141.38938"
gradientUnits="userSpaceOnUse"
id="color-12_43632_gr12"
>
<stop offset="0" stop-color="#cd292d"></stop>
<stop offset="1" stop-color="#e74c3c"></stop>
</linearGradient>
<linearGradient
x1="72.5625"
y1="27.21094"
x2="72.5625"
y2="144.96106"
gradientUnits="userSpaceOnUse"
id="color-13_43632_gr13"
>
<stop offset="0" stop-color="#cd292d"></stop>
<stop offset="1" stop-color="#e74c3c"></stop>
</linearGradient>
<linearGradient
x1="99.4375"
y1="27.21094"
x2="99.4375"
y2="144.96106"
gradientUnits="userSpaceOnUse"
id="color-14_43632_gr14"
>
<stop offset="0" stop-color="#cd292d"></stop>
<stop offset="1" stop-color="#e74c3c"></stop>
</linearGradient>
<linearGradient
x1="86"
y1="27.21094"
x2="86"
y2="144.96106"
gradientUnits="userSpaceOnUse"
id="color-15_43632_gr15"
>
<stop offset="0" stop-color="#cd292d"></stop>
<stop offset="1" stop-color="#e74c3c"></stop>
</linearGradient>
</defs>
<g
fill="none"
fill-rule="nonzero"
stroke="none"
stroke-width="1"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="10"
stroke-dasharray=""
stroke-dashoffset="0"
font-family="none"
font-weight="none"
font-size="none"
text-anchor="none"
style="mix-blend-mode: normal"
>
<path d="M0,172v-172h172v172z" fill="none"></path>
<g>
<path
d="M69.875,29.5625h5.375v24.1875h-5.375z"
fill="url(#color-1_43632_gr1)"
></path>
<path
d="M123.88031,46.96944l-5.2245,8.10819c-0.54019,0.8385 -0.54019,1.88394 0,2.72244l5.2245,8.10819c1.10187,1.70925 3.7625,1.70925 4.86437,0l5.2245,-8.10819c0.54019,-0.8385 0.54019,-1.88394 0,-2.72244l-5.2245,-8.10819c-1.10188,-1.70925 -3.7625,-1.70925 -4.86437,0z"
fill="url(#color-2_43632_gr2)"
></path>
<path
d="M123.625,21.5h5.375v8.0625h-5.375z"
fill="url(#color-3_43632_gr3)"
></path>
<path
d="M126.3125,88.6875c-17.78319,0 -32.25,-14.46681 -32.25,-32.25c0,-17.78319 14.46681,-32.25 32.25,-32.25c17.78319,0 32.25,14.46681 32.25,32.25c0,17.78319 -14.46681,32.25 -32.25,32.25zM126.3125,29.5625c-14.81888,0 -26.875,12.05613 -26.875,26.875c0,14.81887 12.05612,26.875 26.875,26.875c14.81888,0 26.875,-12.05613 26.875,-26.875c0,-14.81887 -12.05612,-26.875 -26.875,-26.875z"
fill="url(#color-4_43632_gr4)"
></path>
<path
d="M126.3125,77.9375c-2.96853,0 -5.375,2.40647 -5.375,5.375c0,2.96853 2.40647,5.375 5.375,5.375c2.96853,0 5.375,-2.40647 5.375,-5.375c0,-2.96853 -2.40647,-5.375 -5.375,-5.375z"
fill="url(#color-5_43632_gr5)"
></path>
<path
d="M126.3125,24.1875c-2.96853,0 -5.375,2.40647 -5.375,5.375c0,2.96853 2.40647,5.375 5.375,5.375c2.96853,0 5.375,-2.40647 5.375,-5.375c0,-2.96853 -2.40647,-5.375 -5.375,-5.375z"
fill="url(#color-6_43632_gr6)"
></path>
<path
d="M153.1875,51.0625c-2.96853,0 -5.375,2.40647 -5.375,5.375c0,2.96853 2.40647,5.375 5.375,5.375c2.96853,0 5.375,-2.40647 5.375,-5.375c0,-2.96853 -2.40647,-5.375 -5.375,-5.375z"
fill="url(#color-7_43632_gr7)"
></path>
<path
d="M99.4375,51.0625c-2.96853,0 -5.375,2.40647 -5.375,5.375c0,2.96853 2.40647,5.375 5.375,5.375c2.96853,0 5.375,-2.40647 5.375,-5.375c0,-2.96853 -2.40647,-5.375 -5.375,-5.375z"
fill="url(#color-8_43632_gr8)"
></path>
<path
d="M126.35281,24.1875c-4.46931,0 -8.10281,-3.61737 -8.10281,-8.0625c0,-4.44512 3.6335,-8.0625 8.10281,-8.0625c4.46931,0 7.99531,3.61738 7.99531,8.0625c0,4.44513 -3.526,8.0625 -7.99531,8.0625zM126.3125,13.4375c-1.48081,0 -2.6875,1.20669 -2.6875,2.6875c0,1.48081 1.20669,2.6875 2.6875,2.6875c1.48081,0 2.6875,-1.20669 2.6875,-2.6875c0,-1.48081 -1.20669,-2.6875 -2.6875,-2.6875z"
fill="url(#color-9_43632_gr9)"
></path>
<path
d="M43,120.9375h5.375v21.83594h-5.375z"
fill="url(#color-10_43632_gr10)"
></path>
<path
d="M43,43h5.375v67.1875h-5.375z"
fill="url(#color-11_43632_gr11)"
></path>
<path
d="M123.625,102.125h5.375v27.21094h-5.375z"
fill="url(#color-12_43632_gr12)"
></path>
<path
d="M69.875,91.375h5.375v37.625h-5.375z"
fill="url(#color-13_43632_gr13)"
></path>
<path
d="M96.75,118.25h5.375v24.52344h-5.375z"
fill="url(#color-14_43632_gr14)"
></path>
<path
d="M99.4805,145.12769c-2.70094,0 -5.42337,-0.80088 -7.74269,-2.41606l-17.58431,-10.46781c-1.08038,-0.74444 -2.32738,-0.74444 -3.25456,-0.10213l-17.65687,10.664c-4.45588,3.11212 -10.64519,3.11481 -15.25425,-0.09406l-18.2105,-10.99187c-2.31125,-1.60444 -3.65231,-4.15488 -3.65231,-6.751v-92.71875c0,-1.97531 1.03469,-3.8485 2.77887,-4.76225c1.79256,-0.93525 3.94794,-0.7955 5.61956,0.37356l19.53006,11.83037c1.06694,0.73638 2.31394,0.74175 3.24112,0.09406l17.85038,-10.57531c4.43975,-3.10138 10.62906,-3.10406 15.23812,0.10481l17.35319,10.33344c0.7955,0.54556 1.52112,0.56706 2.02906,0.50525l0.65037,5.33469c-2.021,0.2365 -4.00437,-0.22575 -5.59269,-1.33031l-17.35319,-10.36031c-2.92669,-2.02638 -6.6435,-2.03175 -9.417,-0.10213l-17.85037,10.60219c-2.59344,1.81675 -6.30488,1.81944 -9.073,-0.10481l-19.6295,-11.94325v92.71875c0,0.85462 0.473,1.73613 1.20131,2.24406l18.20781,10.99188c2.91325,2.021 6.63813,2.02637 9.40625,0.09406l17.65688,-10.664c2.61494,-1.82481 6.32637,-1.8275 9.08644,0.09406l17.587,10.4705c2.92669,2.02906 6.64888,2.03444 9.41969,0.10213l17.71869,-10.66669c2.61225,-1.82212 6.32637,-1.82481 9.08644,0.09675l19.6295,12.0185v-65.84375l5.375,-5.375v71.21875c0,1.97531 -1.08306,3.76788 -2.82994,4.67894c-1.79794,0.93794 -3.95063,0.79281 -5.62225,-0.37087l-6.05494,-3.73562l-13.42137,-8.08669c-1.06694,-0.73369 -2.31125,-0.74175 -3.24113,-0.09675l-17.71869,10.66669c-2.20912,1.54531 -4.84556,2.322 -7.50619,2.322z"
fill="url(#color-15_43632_gr15)"
></path>
</g>
</g>
</svg>
</div>
<p class="" style="font-size: 1.15em">Clients country-wide</p>
<p class="text-muted">We have served clients throughout Uganda.</p>
</div>
</div>
<div class="col-sm-6 col-md-6 col-lg-3">
<div class="mb-3">
<div class="mb-4">
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="64"
height="64"
viewBox="0 0 172 172"
style="fill: #000000"
>
<g transform="">
<g
fill="none"
fill-rule="nonzero"
stroke="none"
stroke-width="1"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="10"
stroke-dasharray=""
stroke-dashoffset="0"
font-family="none"
font-weight="none"
font-size="none"
text-anchor="none"
style="mix-blend-mode: normal"
>
<path
d="M0,172v-172h172v172z"
fill="none"
stroke="none"
></path>
<g
id="original-icon"
fill="#cd292d"
stroke="none"
opacity="0"
visibility="hidden"
>
<path
d="M9.7825,44.72c-5.36156,0 -9.7825,4.42094 -9.7825,9.7825v89.9775c0,5.71094 4.60906,10.32 10.32,10.32h14.0825c1.63938,9.75563 10.11844,17.2 20.3175,17.2c10.19906,0 18.67813,-7.44437 20.3175,-17.2h31.82c2.53969,0 4.81063,-1.075 6.5575,-2.6875c1.78719,1.57219 4.07156,2.66063 6.665,2.6875h3.7625c1.63938,9.75563 10.11844,17.2 20.3175,17.2c11.35469,0 20.64,-9.28531 20.64,-20.64c0,-11.35469 -9.28531,-20.64 -20.64,-20.64c-10.19906,0 -18.67812,7.44438 -20.3175,17.2h-3.7625c-0.645,0 -1.62594,-0.44344 -2.365,-1.1825c-0.73906,-0.73906 -1.075,-1.62594 -1.075,-2.2575v-65.36c0,-1.29 2.15,-3.44 3.44,-3.44h27.52c2.70094,0 6.50375,2.88906 9.1375,6.02c0.02688,0.04031 0.08063,0.06719 0.1075,0.1075l0.5375,0.7525h-16.6625c-5.4825,0 -10.32,4.43438 -10.32,10.32v13.76c0,2.86219 1.29,5.375 3.1175,7.2025c1.8275,1.8275 4.34031,3.1175 7.2025,3.1175h34.4v27.52c0,1.29 -2.15,3.44 -3.44,3.44h-6.88v6.88h6.88c5.71094,0 10.32,-4.60906 10.32,-10.32v-33.11c0,-7.87437 -5.4825,-14.835 -5.4825,-14.835h-0.1075l-14.19,-18.92v-0.1075l-0.1075,-0.1075c-3.17125,-3.82969 -7.92812,-8.6 -14.5125,-8.6h-27.52c-1.22281,0 -2.35156,0.25531 -3.44,0.645v-14.7275c0,-5.28094 -4.16562,-9.9975 -9.675,-9.9975zM9.7825,51.6h87.1825c1.47813,0 2.795,1.42438 2.795,3.1175v90.3c0,1.6125 -1.27656,2.9025 -2.9025,2.9025h-31.82c-1.63937,-9.75562 -10.11844,-17.2 -20.3175,-17.2c-10.19906,0 -18.67812,7.44438 -20.3175,17.2h-14.0825c-1.29,0 -3.44,-2.16344 -3.44,-3.44v-89.9775c0,-1.6125 1.26313,-2.9025 2.9025,-2.9025zM130.72,89.44h21.8225l8.385,11.18c0,0 3.1175,5.33469 3.7625,9.46h-33.97c-0.57781,0 -1.505,-0.43 -2.2575,-1.1825c-0.7525,-0.7525 -1.1825,-1.67969 -1.1825,-2.2575v-13.76c0,-1.73344 2.0425,-3.44 3.44,-3.44zM44.72,137.6c7.64594,0 13.76,6.11406 13.76,13.76c0,7.64594 -6.11406,13.76 -13.76,13.76c-7.64594,0 -13.76,-6.11406 -13.76,-13.76c0,-7.64594 6.11406,-13.76 13.76,-13.76zM134.16,137.6c7.64594,0 13.76,6.11406 13.76,13.76c0,7.64594 -6.11406,13.76 -13.76,13.76c-7.64594,0 -13.76,-6.11406 -13.76,-13.76c0,-7.64594 6.11406,-13.76 13.76,-13.76z"
></path>
</g>
<g id="subtracted-icon" fill="#cd292d" stroke="none">
<path
d="M96.965,44.72c5.50938,0 9.675,4.71656 9.675,9.9975v14.7275c1.08844,-0.38969 2.21719,-0.645 3.44,-0.645h27.52c6.58438,0 11.34125,4.77031 14.5125,8.6l0.1075,0.1075v0.1075l14.19,18.92h0.1075c0,0 5.03753,6.39569 5.45504,13.8612c-2.65657,-3.10935 -5.98935,-5.64229 -9.77511,-7.36788c-0.70157,-1.43574 -1.26993,-2.40832 -1.26993,-2.40832l-8.385,-11.18h-21.8225c-1.3975,0 -3.44,1.70656 -3.44,3.44v8.43892c-2.14851,-0.53362 -4.37032,-0.82486 -6.59213,-0.82486c-0.09607,0 -0.19203,0.00048 -0.28787,0.00144v-7.6155c0,-5.88562 4.8375,-10.32 10.32,-10.32h16.6625l-0.5375,-0.7525c-0.02687,-0.04031 -0.08062,-0.06719 -0.1075,-0.1075c-2.63375,-3.13094 -6.43656,-6.02 -9.1375,-6.02h-27.52c-1.29,0 -3.44,2.15 -3.44,3.44v25.10552c-2.58012,1.47966 -4.90119,3.35232 -6.88,5.53187v-55.03989c0,-1.69312 -1.31687,-3.1175 -2.795,-3.1175h-87.1825c-1.63937,0 -2.9025,1.29 -2.9025,2.9025v89.9775c0,1.27656 2.15,3.44 3.44,3.44h14.0825c1.63938,-9.75562 10.11844,-17.2 20.3175,-17.2c10.19906,0 18.67813,7.44438 20.3175,17.2h31.82c0.49735,0 0.962,-0.1207 1.36744,-0.33441c1.20949,1.93456 2.56436,3.75587 4.01608,5.47121c-1.54368,1.07417 -3.37997,1.7432 -5.38352,1.7432h-31.82c-1.63937,9.75563 -10.11844,17.2 -20.3175,17.2c-10.19906,0 -18.67812,-7.44437 -20.3175,-17.2h-14.0825c-5.71094,0 -10.32,-4.60906 -10.32,-10.32v-89.9775c0,-5.36156 4.42094,-9.7825 9.7825,-9.7825zM30.96,151.36c0,7.64594 6.11406,13.76 13.76,13.76c7.64594,0 13.76,-6.11406 13.76,-13.76c0,-7.64594 -6.11406,-13.76 -13.76,-13.76c-7.64594,0 -13.76,6.11406 -13.76,13.76z"
></path>
</g>
<path d="" fill="none" stroke="none"></path>
<path d="" fill="none" stroke="none"></path>
<g stroke="none">
<g fill="#e74c3c">
<g
id="Слой_2"
font-family='"Inter", sans-serif'
font-weight="400"
font-size="16"
text-anchor="start"
visibility="hidden"
></g>
<g
id="Android_x5F_4"
font-family='"Inter", sans-serif'
font-weight="400"
font-size="16"
text-anchor="start"
visibility="hidden"
></g>
<g
id="Android_x5F_5"
font-family='"Inter", sans-serif'
font-weight="400"
font-size="16"
text-anchor="start"
visibility="hidden"
></g>
<g
id="Windows_x5F_8"
font-family='"Inter", sans-serif'
font-weight="400"
font-size="16"
text-anchor="start"
visibility="hidden"
></g>
<g
id="Windows_x5F_10"
font-family='"Inter", sans-serif'
font-weight="400"
font-size="16"
text-anchor="start"
visibility="hidden"
></g>
<g
id="Color"
font-family='"Inter", sans-serif'
font-weight="400"
font-size="16"
text-anchor="start"
visibility="hidden"
></g>
<g
id="IOS"
font-family='"Inter", sans-serif'
font-weight="400"
font-size="16"
text-anchor="start"
visibility="hidden"
></g>
<g id="IOS_copy">
<path
d="M150.48201,108.10812c-5.62778,0 -10.92452,2.31732 -14.89707,5.95883c-3.97255,-3.64151 -9.26929,-5.95883 -14.89707,-5.95883c-11.91766,0 -21.51799,9.60033 -21.51799,21.18695c0,18.20753 16.5523,29.13205 27.14577,36.08402c2.97941,1.98628 5.29674,3.31046 6.95197,4.96569l1.98628,1.65523l1.98628,-1.65523c1.65523,-1.32418 4.3036,-2.97941 6.95197,-4.96569c11.25556,-7.28301 27.80787,-17.87649 27.80787,-36.08402c0,-11.58661 -9.60033,-21.18695 -21.51799,-21.18695zM141.21272,159.7513c-2.31732,1.32418 -3.97255,2.64837 -5.62778,3.64151c-1.65523,-1.32418 -3.31046,-2.31732 -5.62778,-3.64151c-10.26243,-6.62092 -24.16636,-15.89021 -24.16636,-30.45623c0,-7.9451 6.62092,-14.56603 14.89707,-14.56603c4.96569,0 9.26929,2.31732 12.2487,6.62092l2.64837,3.97255l2.64837,-3.97255c2.64837,-3.97255 7.28301,-6.62092 12.2487,-6.62092c8.27615,0 14.89707,6.62092 14.89707,14.56603c0,14.56603 -13.90393,23.83531 -24.16636,30.45623z"
></path>
</g>
</g>
<g fill="#000000" opacity="0">
<g
id="IOS"
font-family='"Inter", sans-serif'
font-weight="400"
font-size="16"
text-anchor="start"
visibility="hidden"
></g>
<g id="IOS_copy">
<path
d="M150.48201,100.49406c-5.29674,0 -10.59347,1.65523 -14.89707,4.3036c-4.3036,-2.64837 -9.60033,-4.3036 -14.89707,-4.3036c-15.55916,0 -28.13891,12.57975 -28.13891,27.80787c0,21.51799 18.86962,34.09774 30.12519,41.7118c2.64837,1.65523 4.96569,3.31046 6.62092,4.63464l1.98628,1.65523l4.3036,3.31046l4.3036,-3.31046l1.98628,-1.65523c1.65523,-1.32418 3.64151,-2.64837 6.62092,-4.63464c11.25556,-7.61406 30.12519,-19.86276 30.12519,-41.7118c0,-15.22812 -12.57975,-27.80787 -28.13891,-27.80787z"
></path>
</g>
</g>
</g>
<path
d="M99.16987,172v-63.89188h72.83013v63.89188z"
id="overlay-drag"
fill="#ff0000"
stroke="none"
opacity="0"
></path>
</g>
</g>
</svg>
</div>
<p class="" style="font-size: 1.15em">Timely Work</p>
<p class="text-muted">
We deliver your project in the agreed Timeframe.
</p>
</div>
</div>
<div class="col-sm-6 col-md-6 col-lg-3">
<div class="mb-3">
<div class="mb-4">
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="64"
height="64"
viewBox="0 0 172 172"
style="fill: #000000"
>
<g
fill="none"
fill-rule="nonzero"
stroke="none"
stroke-width="1"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="10"
stroke-dasharray=""
stroke-dashoffset="0"
font-family="none"
font-weight="none"
font-size="none"
text-anchor="none"
style="mix-blend-mode: normal"
>
<path
d="M0,172v-172h172v172z"
fill="none"
stroke="none"
></path>
<g
id="original-icon"
fill="#cd292d"
stroke="none"
opacity="0"
visibility="hidden"
>
<path
d="M69.875,10.75c-5.9104,0 -14.38232,1.85815 -19.65234,5.396c-9.99414,0.35693 -16.83887,7.40112 -17.97266,18.52905c-0.67187,6.87622 -0.05249,11.78931 0.37793,15.0437c0.13647,1.13379 0.29395,2.41455 0.24146,2.79248l-0.24146,1.53271c-0.43042,0 -0.82935,0.08398 -1.15478,0.16797c-2.41455,0.64038 -4.13623,2.79248 -4.80811,6.06787c-0.5459,2.63501 -0.35693,5.82641 0.47241,9.00732c1.45923,5.34351 4.47217,9.37476 7.76855,10.61353c1.70068,5.21753 4.19922,10.37207 7.31714,15.0437l-24.77539,14.36133c-10.75,6.20435 -17.44776,17.78369 -17.44776,30.23438v19.02246c0,4.43018 3.63233,8.0625 8.0625,8.0625h123.625c4.43018,0 8.0625,-3.63232 8.0625,-8.0625v-8.0625h24.1875c4.44067,0 8.0625,-3.62183 8.0625,-8.0625v-9.57422c0,-10.06763 -5.04956,-19.3479 -13.51099,-24.81738l-15.88354,-10.2251c6.69776,-1.70068 13.90991,-4.2937 18.802,-6.4563c1.42773,-0.64038 2.50903,-1.86865 2.94995,-3.38037c0.45142,-1.51172 0.20996,-3.13891 -0.66138,-4.46167l-4.59814,-7.05469c-2.43555,-3.71631 -4.16772,-7.81055 -5.16504,-12.14624l-4.56665,-19.91479c-3.44336,-15.02271 -16.45044,-26.01416 -31.78809,-26.97998c-2.1311,-1.37524 -4.56665,-2.09961 -7.07568,-2.09961c-3.48535,0 -9.1543,0.021 -14.4873,2.20459c-6.41431,-4.39868 -14.36133,-6.78174 -23.45264,-6.78174zM69.875,16.125h2.6875c16.31397,0 28.08228,8.33545 32.92188,23.05371c-1.85815,-0.20996 -3.7688,0.03149 -5.11255,1.30176c-1.01831,0.98682 -1.98413,2.84497 -0.74536,6.17285c1.6377,4.51416 2.23608,7.18066 2.41455,10.93897c0.06299,0.96582 0.59839,1.82666 1.45923,2.28857c0.85034,0.41992 1.87915,0.37793 2.6875,-0.16797c0.45142,-0.26245 0.66138,-0.29395 0.72436,-0.32544c0.15747,0.08398 0.64038,0.65088 0.91333,1.96314c0.34643,1.80566 0.20996,4.19922 -0.40942,6.54028c-0.67187,2.46704 -1.6377,4.24121 -2.55103,5.375c-0.88184,1.12329 -1.72168,1.65869 -2.1206,1.65869c-1.18628,0 -2.23608,0.77686 -2.58252,1.93164c-1.5852,5.32251 -4.05224,10.69751 -7.25415,15.40064c-0.99732,1.51172 -2.06812,2.96045 -3.2544,4.3252c-5.42749,6.47729 -12.30371,10.91797 -19.77832,10.91797c-7.47461,0 -14.35083,-4.44067 -19.77832,-10.91797c-1.18628,-1.36474 -2.25708,-2.81348 -3.25439,-4.3252c-3.20191,-4.70312 -5.66895,-10.07812 -7.25415,-15.40064c-0.34643,-1.15478 -1.39624,-1.93164 -2.58252,-1.93164c-0.80835,0 -3.32788,-2.08911 -4.67163,-7.03369c-0.61939,-2.34107 -0.75586,-4.73462 -0.40942,-6.54028c0.30445,-1.36474 0.78735,-1.90015 0.91333,-1.96314c0,0 0.22046,0.03149 0.72436,0.32544c0.80835,0.5459 1.83716,0.58789 2.6875,0.16797c0.86084,-0.46191 1.39624,-1.32275 1.45923,-2.28857c0.05249,-1.39624 0.20996,-2.79248 0.45142,-4.13623c0.20996,-1.15478 0.03149,-2.44604 -0.20996,-4.40918c-0.37793,-3.01294 -0.96582,-7.57959 -0.32544,-13.84692c0.82935,-8.56641 5.8894,-13.69995 13.48999,-13.69995c0.5669,0 1.12329,-0.18896 1.6167,-0.5354c3.67432,-2.77148 11.04395,-4.8396 17.14331,-4.8396zM110.50244,20.70215c1.6272,0 3.2124,0.5249 4.56665,1.53272c0.43042,0.31494 0.95532,0.50391 1.50122,0.5249c13.25903,0.5249 24.59692,9.92065 27.55737,22.84375l4.56665,19.91479c1.13379,4.96558 3.11792,9.63721 5.9104,13.88892l4.61914,7.04419c-6.16235,2.71899 -15.84155,5.98389 -23.02222,7.24365l-5.56397,-3.59033c2.85547,-3.34888 4.36719,-6.83423 5.78442,-10.65552c0.26245,-0.72436 0.85034,-1.43823 1.84766,-2.24658c2.1206,-1.72168 3.62183,-4.91309 3.91577,-8.33545c0.35693,-4.18872 -0.5354,-7.27515 -2.63501,-9.19629c-0.62988,-0.57739 -0.75586,-0.92383 -0.76636,-1.0708l-0.08398,-0.64038c-0.29395,-2.56152 -0.59839,-4.98657 -1.0813,-6.48779c-0.35693,-1.11279 -1.41723,-1.86865 -2.58252,-1.86865h-5.11255c-3.88428,-0.04199 -7.86304,-0.43042 -11.7998,-1.14429c-1.44873,-0.28345 -2.85547,0.69287 -3.11792,2.1521c-0.27295,1.46973 0.69287,2.86597 2.1521,3.12842c4.24121,0.77685 8.51392,1.18628 12.73413,1.23877h3.00244c0.19946,1.22827 0.35693,2.66651 0.47241,3.60083l0.07349,0.66138c0.18896,1.6062 1.00781,3.04443 2.48804,4.40918c0.76636,0.69287 1.0918,2.42505 0.89233,4.75561c-0.18896,2.24658 -1.13379,3.97876 -1.94214,4.62964c-1.11279,0.90283 -2.698,2.36206 -3.49585,4.54566c-2.41455,6.54028 -4.76611,11.22241 -15.02271,16.56592c-1.32275,0.68237 -1.83716,2.30957 -1.14429,3.62183c0.47241,0.92383 1.41724,1.44873 2.38306,1.44873c0.41992,0 0.83984,-0.09448 1.23877,-0.30444c3.19141,-1.65869 5.73193,-3.31738 7.81055,-4.97608l28.93262,18.63403c6.91821,4.47217 11.04395,12.06226 11.04395,20.29272v9.57422c0,1.48022 -1.20728,2.6875 -2.6875,2.6875h-24.1875v-5.58496c0,-12.45068 -6.68726,-24.03003 -17.43726,-30.23437l-24.78589,-14.36133c3.11792,-4.67163 5.61645,-9.82617 7.31714,-15.0437c3.29639,-1.23877 6.30933,-5.27002 7.76855,-10.61353c0.82935,-3.18091 1.01831,-6.37232 0.47241,-9.00732c-0.67187,-3.27539 -2.39355,-5.42749 -4.8081,-6.06787c-0.32544,-0.08398 -0.69287,-0.16797 -1.15479,-0.16797c-0.37793,-2.87646 -1.10229,-5.56396 -2.47754,-9.23828c-0.02099,-0.11548 -0.04199,-0.22046 -0.07349,-0.29395c0.94483,0.07349 2.44605,0.45142 3.70581,0.96582c0.91333,0.36743 1.99463,0.23096 2.75049,-0.40942c0.77686,-0.64038 1.12329,-1.66919 0.91333,-2.63501c-1.87915,-8.54541 -5.68994,-15.6001 -11.03345,-20.87012c3.50635,-0.86084 7.03369,-0.86084 9.59522,-0.86084zM55.16724,32.58594c-1.92114,-0.16797 -3.85278,0.71387 -4.95508,2.39355l-4.3147,6.54028c-0.81885,1.23877 -0.47241,2.90796 0.76636,3.72681c0.45142,0.29395 0.96582,0.44092 1.46973,0.44092c0.88184,0 1.73218,-0.41992 2.25708,-1.20728l4.3042,-6.54028l4.19922,2.04712c7.65308,3.7373 16.19848,5.70044 24.7229,5.70044h6.86572c1.48022,0 2.6875,-1.19678 2.6875,-2.6875c0,-1.49072 -1.20728,-2.6875 -2.6875,-2.6875h-6.86572c-7.70557,0 -15.44262,-1.78467 -22.36084,-5.16504l-4.20972,-2.04712c-0.60889,-0.29395 -1.23877,-0.46191 -1.87915,-0.5144zM45.44604,99.26953c6.50879,7.98901 15.02271,13.60547 24.42896,13.60547c9.40625,0 17.92017,-5.61646 24.42896,-13.60547l25.32129,14.68677c9.10181,5.25952 14.74976,15.0752 14.74976,25.58374v19.02246c0,1.48022 -1.20728,2.6875 -2.6875,2.6875h-123.625c-1.48022,0 -2.6875,-1.20728 -2.6875,-2.6875v-19.02246c0,-10.50854 5.64795,-20.32422 14.76026,-25.58374zM48.54297,112.875c-1.0498,-0.06299 -2.07861,0.49341 -2.57202,1.48022c-0.66138,1.33325 -0.12598,2.94995 1.19678,3.61133l21.5,10.75c0.38843,0.18897 0.79785,0.28345 1.20728,0.28345c0.40942,0 0.82935,-0.09448 1.20728,-0.28345l21.5,-10.75c1.32275,-0.66137 1.85815,-2.27808 1.19678,-3.61133c-0.66137,-1.32275 -2.27808,-1.85815 -3.61133,-1.19678l-20.29272,10.15161l-20.29272,-10.15161c-0.33594,-0.16797 -0.69287,-0.25195 -1.03931,-0.28345zM145.125,129c-1.48022,0 -2.6875,1.19678 -2.6875,2.6875v5.375c0,1.49072 1.20728,2.6875 2.6875,2.6875c1.48022,0 2.6875,-1.19678 2.6875,-2.6875v-5.375c0,-1.49072 -1.20728,-2.6875 -2.6875,-2.6875zM158.5625,129c-1.48022,0 -2.6875,1.19678 -2.6875,2.6875v5.375c0,1.49072 1.20728,2.6875 2.6875,2.6875c1.48022,0 2.6875,-1.19678 2.6875,-2.6875v-5.375c0,-1.49072 -1.20728,-2.6875 -2.6875,-2.6875zM16.125,145.125c-1.48022,0 -2.6875,1.19678 -2.6875,2.6875v5.375c0,1.49072 1.20728,2.6875 2.6875,2.6875c1.48022,0 2.6875,-1.19678 2.6875,-2.6875v-5.375c0,-1.49072 -1.20728,-2.6875 -2.6875,-2.6875zM29.5625,145.125c-1.48022,0 -2.6875,1.19678 -2.6875,2.6875v5.375c0,1.49072 1.20728,2.6875 2.6875,2.6875c1.48022,0 2.6875,-1.19678 2.6875,-2.6875v-5.375c0,-1.49072 -1.20728,-2.6875 -2.6875,-2.6875zM43,145.125c-1.48022,0 -2.6875,1.19678 -2.6875,2.6875v5.375c0,1.49072 1.20728,2.6875 2.6875,2.6875c1.48022,0 2.6875,-1.19678 2.6875,-2.6875v-5.375c0,-1.49072 -1.20728,-2.6875 -2.6875,-2.6875zM56.4375,145.125c-1.48022,0 -2.6875,1.19678 -2.6875,2.6875v5.375c0,1.49072 1.20728,2.6875 2.6875,2.6875c1.48022,0 2.6875,-1.19678 2.6875,-2.6875v-5.375c0,-1.49072 -1.20728,-2.6875 -2.6875,-2.6875zM69.875,145.125c-1.48022,0 -2.6875,1.19678 -2.6875,2.6875v5.375c0,1.49072 1.20728,2.6875 2.6875,2.6875c1.48022,0 2.6875,-1.19678 2.6875,-2.6875v-5.375c0,-1.49072 -1.20728,-2.6875 -2.6875,-2.6875zM83.3125,145.125c-1.48022,0 -2.6875,1.19678 -2.6875,2.6875v5.375c0,1.49072 1.20728,2.6875 2.6875,2.6875c1.48022,0 2.6875,-1.19678 2.6875,-2.6875v-5.375c0,-1.49072 -1.20728,-2.6875 -2.6875,-2.6875zM96.75,145.125c-1.48022,0 -2.6875,1.19678 -2.6875,2.6875v5.375c0,1.49072 1.20728,2.6875 2.6875,2.6875c1.48022,0 2.6875,-1.19678 2.6875,-2.6875v-5.375c0,-1.49072 -1.20728,-2.6875 -2.6875,-2.6875zM110.1875,145.125c-1.48022,0 -2.6875,1.19678 -2.6875,2.6875v5.375c0,1.49072 1.20728,2.6875 2.6875,2.6875c1.48022,0 2.6875,-1.19678 2.6875,-2.6875v-5.375c0,-1.49072 -1.20728,-2.6875 -2.6875,-2.6875zM123.625,145.125c-1.48022,0 -2.6875,1.19678 -2.6875,2.6875v5.375c0,1.49072 1.20728,2.6875 2.6875,2.6875c1.48022,0 2.6875,-1.19678 2.6875,-2.6875v-5.375c0,-1.49072 -1.20728,-2.6875 -2.6875,-2.6875z"
></path>
</g>
<g id="subtracted-icon" fill="#cd292d" stroke="none">
<path
d="M72.5625,10.75c9.09131,0 17.03833,2.38306 23.45264,6.78174c5.33301,-2.18359 11.00195,-2.20459 14.4873,-2.20459c2.50903,0 4.94458,0.72436 7.07568,2.09961c15.33765,0.96582 28.34473,11.95728 31.78809,26.97998l4.56665,19.91479c0.99732,4.33569 2.72949,8.42993 5.16504,12.14624l4.59814,7.05469c0.87134,1.32276 1.11279,2.94995 0.66138,4.46167c-0.44092,1.51172 -1.52222,2.73999 -2.94995,3.38037c-3.45156,1.52579 -8.05801,3.26585 -12.82387,4.7556c-2.0321,-1.31912 -3.11262,-2.33068 -3.11729,-2.33441c-0.70518,-0.70768 -1.51896,-1.26807 -2.4041,-1.66564c5.7303,-1.56551 11.81917,-3.75261 16.16166,-5.66863l-4.61914,-7.04419c-2.79248,-4.25171 -4.77661,-8.92334 -5.9104,-13.88892l-4.56665,-19.91479c-2.96045,-12.9231 -14.29834,-22.31885 -27.55737,-22.84375c-0.5459,-0.02099 -1.0708,-0.20996 -1.50122,-0.5249c-1.35425,-1.00781 -2.93945,-1.53272 -4.56665,-1.53272c-2.56152,0 -6.08887,0 -9.59522,0.86084c5.34351,5.27002 9.1543,12.32471 11.03345,20.87012c0.20996,0.96582 -0.13647,1.99463 -0.91333,2.63501c-0.75586,0.64038 -1.83716,0.77686 -2.75049,0.40942c-1.25977,-0.5144 -2.76099,-0.89233 -3.70581,-0.96582c0.03149,0.07349 0.05249,0.17847 0.07349,0.29395c1.37524,3.67432 2.09961,6.36182 2.47754,9.23828c0.46191,0 0.82935,0.08398 1.15479,0.16797c2.41455,0.64038 4.13623,2.79248 4.8081,6.06787c0.5459,2.63501 0.35693,5.82641 -0.47241,9.00732c-1.45923,5.34351 -4.47217,9.37476 -7.76855,10.61353c-1.70068,5.21753 -4.19922,10.37207 -7.31714,15.0437l12.47095,7.22586c-2.35163,0.05459 -4.4578,1.12145 -5.89863,2.78073l-9.79523,-5.6814c-6.50879,7.98901 -15.02271,13.60547 -24.42896,13.60547c-9.40625,0 -17.92017,-5.61646 -24.42896,-13.60547l-25.31079,14.68677c-9.1123,5.25952 -14.76026,15.0752 -14.76026,25.58374v19.02246c0,1.48022 1.20728,2.6875 2.6875,2.6875h110.4594c0.84862,0.87834 1.6365,1.63865 2.33229,2.279c1.20522,1.10818 2.34104,2.14004 3.40427,3.096l-116.19596,0c-4.43017,0 -8.0625,-3.63232 -8.0625,-8.0625v-19.02246c0,-12.45068 6.69776,-24.03003 17.44776,-30.23437l24.77539,-14.36133c-3.11792,-4.67163 -5.61646,-9.82617 -7.31714,-15.0437c-3.29639,-1.23877 -6.30933,-5.27002 -7.76855,-10.61353c-0.82934,-3.18091 -1.01831,-6.37232 -0.47241,-9.00732c0.67188,-3.27539 2.39355,-5.42749 4.80811,-6.06787c0.32544,-0.08398 0.72436,-0.16797 1.15478,-0.16797l0.24146,-1.53271c0.05249,-0.37793 -0.10498,-1.65869 -0.24146,-2.79248c-0.43042,-3.25439 -1.0498,-8.16748 -0.37793,-15.0437c1.13379,-11.12793 7.97852,-18.17212 17.97266,-18.52905c5.27002,-3.53784 13.74194,-5.396 19.65234,-5.396zM52.73169,20.9646c-0.49341,0.34644 -1.0498,0.5354 -1.6167,0.5354c-7.60059,0 -12.66064,5.13354 -13.48999,13.69995c-0.64038,6.26734 -0.05249,10.83398 0.32544,13.84692c0.24146,1.96314 0.41992,3.2544 0.20996,4.40918c-0.24146,1.34375 -0.39893,2.73999 -0.45142,4.13623c-0.06299,0.96582 -0.59839,1.82666 -1.45923,2.28857c-0.85034,0.41992 -1.87915,0.37793 -2.6875,-0.16797c-0.50391,-0.29395 -0.72436,-0.32544 -0.72436,-0.32544c-0.12598,0.06299 -0.60889,0.59839 -0.91333,1.96314c-0.34643,1.80566 -0.20996,4.19922 0.40942,6.54028c1.34375,4.94458 3.86328,7.03369 4.67163,7.03369c1.18628,0 2.23609,0.77686 2.58252,1.93164c1.58521,5.32251 4.05224,10.69751 7.25415,15.40064c0.99731,1.51172 2.06811,2.96045 3.25439,4.3252c5.42749,6.47729 12.30371,10.91797 19.77832,10.91797c7.47461,0 14.35083,-4.44067 19.77832,-10.91797c1.18628,-1.36474 2.25708,-2.81348 3.2544,-4.3252c3.2019,-4.70312 5.66895,-10.07812 7.25415,-15.40064c0.34644,-1.15478 1.39624,-1.93164 2.58252,-1.93164c0.39892,0 1.23877,-0.5354 2.1206,-1.65869c0.91333,-1.13379 1.87915,-2.90796 2.55103,-5.375c0.61939,-2.34107 0.75586,-4.73462 0.40942,-6.54028c-0.27295,-1.31226 -0.75586,-1.87915 -0.91333,-1.96314c-0.06299,0.03149 -0.27295,0.06299 -0.72436,0.32544c-0.80835,0.5459 -1.83716,0.58789 -2.6875,0.16797c-0.86084,-0.46191 -1.39624,-1.32275 -1.45923,-2.28857c-0.17847,-3.7583 -0.77685,-6.4248 -2.41455,-10.93897c-1.23877,-3.32788 -0.27295,-5.18603 0.74536,-6.17285c1.34375,-1.27026 3.2544,-1.51172 5.11255,-1.30176c-4.8396,-14.71826 -16.60791,-23.05371 -32.92187,-23.05371h-2.6875c-6.09936,0 -13.46899,2.06811 -17.14331,4.8396zM126.64844,93.93652c-2.07861,1.65869 -4.61914,3.31738 -7.81055,4.97608c-0.39892,0.20996 -0.81885,0.30444 -1.23877,0.30444c-0.96582,0 -1.91065,-0.5249 -2.38306,-1.44873c-0.69287,-1.31226 -0.17847,-2.93945 1.14429,-3.62183c10.25659,-5.34351 12.60815,-10.02564 15.02271,-16.56592c0.79785,-2.18359 2.38306,-3.64282 3.49585,-4.54566c0.80835,-0.65088 1.75317,-2.38305 1.94214,-4.62964c0.19946,-2.33057 -0.12598,-4.06274 -0.89233,-4.75561c-1.48022,-1.36475 -2.29907,-2.80298 -2.48804,-4.40918l-0.07349,-0.66138c-0.11548,-0.93433 -0.27295,-2.37256 -0.47241,-3.60083h-3.00244c-4.22021,-0.05249 -8.49292,-0.46191 -12.73413,-1.23877c-1.45923,-0.26245 -2.42505,-1.65869 -2.1521,-3.12842c0.26245,-1.45923 1.66919,-2.43555 3.11792,-2.1521c3.93677,0.71387 7.91553,1.10229 11.7998,1.14429h5.11255c1.16528,0 2.22559,0.75586 2.58252,1.86865c0.48291,1.50122 0.78735,3.92627 1.0813,6.48779l0.08398,0.64038c0.0105,0.14697 0.13647,0.49341 0.76636,1.0708c2.09961,1.92114 2.99195,5.00757 2.63501,9.19629c-0.29395,3.42236 -1.79517,6.61377 -3.91577,8.33545c-0.99732,0.80835 -1.58521,1.52222 -1.84766,2.24658c-1.41724,3.82129 -2.92896,7.30664 -5.78442,10.65552l4.39794,2.83792c-0.33253,0.23922 -0.64559,0.50386 -0.93476,0.79197c-0.12933,0.12541 -1.35129,1.28023 -3.578,2.69723zM57.04639,33.10034l4.20972,2.04712c6.91821,3.38037 14.65527,5.16504 22.36084,5.16504h6.86572c1.48022,0 2.6875,1.19678 2.6875,2.6875c0,1.49072 -1.20728,2.6875 -2.6875,2.6875h-6.86572c-8.52441,0 -17.06982,-1.96314 -24.7229,-5.70044l-4.19922,-2.04712l-4.3042,6.54028c-0.5249,0.78735 -1.37524,1.20728 -2.25708,1.20728c-0.50391,0 -1.01831,-0.14697 -1.46973,-0.44092c-1.23877,-0.81885 -1.5852,-2.48804 -0.76636,-3.72681l4.3147,-6.54028c1.10229,-1.67969 3.03393,-2.56152 4.95508,-2.39355c0.64038,0.05249 1.27026,0.22046 1.87915,0.5144zM49.58228,113.15845l20.29272,10.15161l20.29272,-10.15161c1.33325,-0.66138 2.94995,-0.12598 3.61133,1.19678c0.66138,1.33325 0.12598,2.94995 -1.19678,3.61133l-21.5,10.75c-0.37793,0.18897 -0.79785,0.28345 -1.20728,0.28345c-0.40942,0 -0.81885,-0.09448 -1.20728,-0.28345l-21.5,-10.75c-1.32275,-0.66137 -1.85815,-2.27808 -1.19678,-3.61133c0.49341,-0.98682 1.52222,-1.54321 2.57202,-1.48022c0.34643,0.03149 0.70337,0.11548 1.03931,0.28345zM18.8125,147.8125v5.375c0,1.49072 -1.20728,2.6875 -2.6875,2.6875c-1.48022,0 -2.6875,-1.19678 -2.6875,-2.6875v-5.375c0,-1.49072 1.20728,-2.6875 2.6875,-2.6875c1.48022,0 2.6875,1.19678 2.6875,2.6875zM32.25,147.8125v5.375c0,1.49072 -1.20728,2.6875 -2.6875,2.6875c-1.48022,0 -2.6875,-1.19678 -2.6875,-2.6875v-5.375c0,-1.49072 1.20728,-2.6875 2.6875,-2.6875c1.48022,0 2.6875,1.19678 2.6875,2.6875zM45.6875,147.8125v5.375c0,1.49072 -1.20728,2.6875 -2.6875,2.6875c-1.48022,0 -2.6875,-1.19678 -2.6875,-2.6875v-5.375c0,-1.49072 1.20728,-2.6875 2.6875,-2.6875c1.48022,0 2.6875,1.19678 2.6875,2.6875zM59.125,147.8125v5.375c0,1.49072 -1.20728,2.6875 -2.6875,2.6875c-1.48022,0 -2.6875,-1.19678 -2.6875,-2.6875v-5.375c0,-1.49072 1.20728,-2.6875 2.6875,-2.6875c1.48022,0 2.6875,1.19678 2.6875,2.6875zM72.5625,147.8125v5.375c0,1.49072 -1.20728,2.6875 -2.6875,2.6875c-1.48022,0 -2.6875,-1.19678 -2.6875,-2.6875v-5.375c0,-1.49072 1.20728,-2.6875 2.6875,-2.6875c1.48022,0 2.6875,1.19678 2.6875,2.6875zM86,147.8125v5.375c0,1.49072 -1.20728,2.6875 -2.6875,2.6875c-1.48022,0 -2.6875,-1.19678 -2.6875,-2.6875v-5.375c0,-1.49072 1.20728,-2.6875 2.6875,-2.6875c1.48022,0 2.6875,1.19678 2.6875,2.6875zM99.4375,147.8125v5.375c0,1.49072 -1.20728,2.6875 -2.6875,2.6875c-1.48022,0 -2.6875,-1.19678 -2.6875,-2.6875v-5.375c0,-1.49072 1.20728,-2.6875 2.6875,-2.6875c1.48022,0 2.6875,1.19678 2.6875,2.6875zM110.1875,155.875c-1.48022,0 -2.6875,-1.19678 -2.6875,-2.6875v-5.375c0,-0.56465 0.17321,-1.08713 0.46885,-1.51837c1.45459,2.95501 3.07559,5.59239 4.7107,7.90279c-0.39936,0.98653 -1.36684,1.67808 -2.49205,1.67808z"
></path>
</g>
<g stroke="none">
<g id="Layer_1" fill="#e74c3c">
<path
d="M139.75,172c-0.59125,0 -1.17712,-0.1935 -1.66894,-0.5805c-0.20694,-0.16663 -5.21106,-4.14144 -13.588,-11.8465c-3.88881,-3.57975 -10.94619,-11.28213 -14.51787,-22.67444c-2.18225,-6.95525 -2.47519,-17.38275 -2.47519,-26.66806c0,-1.4835 1.20131,-2.6875 2.6875,-2.6875c17.49831,0 27.57375,-9.86312 27.67319,-9.96525c0.50256,-0.50256 1.18788,-0.78475 1.90006,-0.78475v0c0.71488,0 1.3975,0.28219 1.90006,0.78744c0.09675,0.09406 10.26894,9.96256 27.65169,9.96256c1.48619,0 2.6875,1.204 2.6875,2.6875c0,9.28531 -0.29294,19.71281 -2.47519,26.67075c-3.57169,11.39231 -10.62906,19.09469 -14.51788,22.67444c-8.37425,7.70506 -13.38106,11.67988 -13.588,11.8465c-0.49181,0.387 -1.07769,0.57781 -1.66894,0.57781zM112.88038,112.84813c0.03763,6.13825 0.30369,16.32119 2.22256,22.446c3.19544,10.19369 9.53525,17.11131 13.029,20.32556c5.45025,5.01487 9.49762,8.46025 11.61806,10.22056c2.12044,-1.76031 6.16781,-5.20569 11.61806,-10.22056c3.49375,-3.21425 9.83087,-10.13188 13.029,-20.32556c1.91887,-6.12481 2.18494,-16.30506 2.22256,-22.446c-13.81912,-0.71756 -23.08294,-6.80475 -26.86156,-9.81475c-3.78131,3.00731 -13.05587,9.09719 -26.87769,9.81475z"
></path>
</g>
<g id="Layer_1" fill="#000000" opacity="0">
<path
d="M139.75,177.375c-1.806,0 -3.57975,-0.61544 -4.99606,-1.73612c-0.94331,-0.74981 -5.88831,-4.74344 -13.89975,-12.10988c-4.28387,-3.94256 -12.05881,-12.43238 -16.00675,-25.02062c-2.39994,-7.64863 -2.72244,-18.58675 -2.72244,-28.27787c0,-4.44513 3.61738,-8.0625 8.0625,-8.0625c14.98281,0 23.55863,-8.08938 23.91338,-8.43338c1.46469,-1.45931 3.54212,-2.31662 5.65988,-2.31662c2.15806,0 4.18444,0.84119 5.70556,2.36769c0.01344,0.01075 8.95206,8.38231 23.84619,8.38231c4.44513,0 8.0625,3.61737 8.0625,8.0625c0,9.69113 -0.3225,20.62925 -2.72244,28.27787c-3.94794,12.58825 -11.72287,21.08075 -16.00675,25.02331c-8.00875,7.36912 -12.95644,11.36275 -13.8675,12.08837c-1.44856,1.1395 -3.22231,1.75494 -5.02831,1.75494z"
></path>
</g>
</g>
<path
d="M107.5,172v-75.207h64.5v75.207z"
id="overlay-drag"
fill="#ff0000"
stroke="none"
opacity="0"
></path>
</g>
</svg>
</div>
<p class="" style="font-size: 1.15em">Dedicated Customer Support</p>
<p class="text-muted">We're here for you and happy to help.</p>
</div>
</div>
<div class="col-sm-6 col-md-6 col-lg-3">
<div class="mb-3">
<div class="mb-4">
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="64"
height="64"
viewBox="0 0 172 172"
style="fill: #000000"
>
<g
fill="none"
fill-rule="nonzero"
stroke="none"
stroke-width="1"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="10"
stroke-dasharray=""
stroke-dashoffset="0"
font-family="none"
font-weight="none"
font-size="none"
text-anchor="none"
style="mix-blend-mode: normal"
>
<path d="M0,172v-172h172v172z" fill="none"></path>
<g fill="#cd292d">
<path
d="M137.48242,5.41699c-1.46973,-0.23096 -2.84497,0.77686 -3.06543,2.24658l-1.97363,12.72363l-39.11572,-4.3252c-3.26489,-0.35693 -6.4668,0.76636 -8.78687,3.08642l-75.17651,75.17651c-4.19922,4.18872 -4.19922,11.01245 0,15.20117l57.01489,57.01489c2.02612,2.02612 4.72412,3.14941 7.60059,3.14941c2.86597,0 5.56396,-1.12329 7.60059,-3.14941l21.5,-21.5105c3.61133,15.43213 17.46875,26.96948 33.98218,26.96948c19.26392,0 34.9375,-15.67358 34.9375,-34.9375c0,-16.51343 -11.53735,-30.36035 -26.95898,-33.98218l11.71582,-11.71582c2.32007,-2.33057 3.44336,-5.52197 3.07593,-8.78686l-4.26221,-38.59082l13.94141,-0.98682c1.48022,-0.10498 2.59302,-1.39624 2.48804,-2.87646c-0.10498,-1.48023 -1.37524,-2.62451 -2.87646,-2.48804l-14.14087,1.00781l-0.81885,-7.40112c-0.56689,-5.03906 -4.47217,-8.94434 -9.50073,-9.50073l-6.86572,-0.75586l1.92114,-12.50317c0.23096,-1.46973 -0.77685,-2.84497 -2.23608,-3.06543zM91.53247,21.39502c0.38843,-0.04199 0.79785,-0.04199 1.19678,0.0105l51.33545,5.67944c2.51953,0.27295 4.47217,2.22559 4.75561,4.74512l0.79785,7.19116l-8.09399,0.57739c-0.50391,-1.0708 -1.16528,-2.08911 -2.05762,-2.98145c-4.18872,-4.18872 -11.00195,-4.18872 -15.20117,0c-4.18872,4.19922 -4.18872,11.01245 0,15.20117c2.09961,2.09961 4.8501,3.14941 7.60059,3.14941c2.76099,0 5.51148,-1.0498 7.60059,-3.14941c1.92114,-1.91064 2.91846,-4.37768 3.08643,-6.89722l7.65308,-0.5459l4.2832,38.80078c0.18897,1.6272 -0.37793,3.2229 -1.54321,4.37768l-14.62378,14.64478c-0.41992,-0.021 -0.83984,-0.07349 -1.25977,-0.07349c-19.26392,0 -34.9375,15.67358 -34.9375,34.9375c0,0.41992 0.04199,0.83984 0.06299,1.25977l-24.41846,24.40796c-2.02612,2.03662 -5.56396,2.03662 -7.60059,0l-57.00439,-57.00439c-2.09961,-2.09961 -2.09961,-5.51147 0,-7.60059l75.17651,-75.17651c0.86084,-0.88184 1.99463,-1.41724 3.19141,-1.55371zM131.86597,38.84277c1.37524,0 2.75049,0.5249 3.80029,1.57471c2.09961,2.08911 2.09961,5.50098 0,7.60059c-2.08911,2.08911 -5.50098,2.08911 -7.60059,0c-2.08911,-2.09961 -2.08911,-5.51148 0,-7.60059c1.0498,-1.0498 2.42505,-1.57471 3.80029,-1.57471zM22.75977,93.63208c-0.69287,0 -1.37524,0.26245 -1.90015,0.78735l-3.80029,3.80029c-1.0498,1.0498 -1.0498,2.75049 0,3.80029c0.5249,0.5249 1.20728,0.78735 1.90015,0.78735c0.69287,0 1.37524,-0.26245 1.90015,-0.78735l3.80029,-3.80029c1.0498,-1.0498 1.0498,-2.75049 0,-3.80029c-0.5249,-0.5249 -1.20727,-0.78735 -1.90015,-0.78735zM32.2605,103.13281c-0.68237,0 -1.37524,0.26245 -1.90015,0.78735l-3.80029,3.78979c-1.0498,1.0603 -1.0498,2.75049 0,3.81079c0.5249,0.5144 1.20727,0.77685 1.90015,0.77685c0.69287,0 1.37524,-0.26245 1.90015,-0.77685l3.80029,-3.81079c1.0498,-1.0498 1.0498,-2.73999 0,-3.78979c-0.5249,-0.5249 -1.21777,-0.78735 -1.90015,-0.78735zM137.0625,107.5c16.30347,0 29.5625,13.25903 29.5625,29.5625c0,16.30347 -13.25903,29.5625 -29.5625,29.5625c-16.30347,0 -29.5625,-13.25903 -29.5625,-29.5625c0,-16.30347 13.25903,-29.5625 29.5625,-29.5625zM41.76123,112.63354c-0.68238,0 -1.37524,0.26245 -1.90015,0.78735l-3.78979,3.80029c-1.0603,1.0498 -1.0603,2.75049 0,3.80029c0.5144,0.5249 1.20728,0.78735 1.88965,0.78735c0.69287,0 1.37524,-0.26245 1.90015,-0.78735l3.80029,-3.80029c1.0498,-1.0498 1.0498,-2.75049 0,-3.80029c-0.5249,-0.5249 -1.21777,-0.78735 -1.90015,-0.78735zM137.0625,118.25c-1.49072,0 -2.6875,1.19678 -2.6875,2.6875v13.4375h-13.4375c-1.49072,0 -2.6875,1.19678 -2.6875,2.6875c0,1.49072 1.19678,2.6875 2.6875,2.6875h13.4375v13.4375c0,1.49072 1.19678,2.6875 2.6875,2.6875c1.49072,0 2.6875,-1.19678 2.6875,-2.6875v-13.4375h13.4375c1.49072,0 2.6875,-1.19678 2.6875,-2.6875c0,-1.49072 -1.19678,-2.6875 -2.6875,-2.6875h-13.4375v-13.4375c0,-1.49072 -1.19678,-2.6875 -2.6875,-2.6875zM51.26196,122.13428c-0.68237,0 -1.37524,0.26245 -1.90015,0.78735l-3.80029,3.80029c-1.0498,1.0498 -1.0498,2.75049 0,3.80029c0.5249,0.5249 1.20728,0.78735 1.90015,0.78735c0.69287,0 1.37524,-0.26245 1.90015,-0.78735l3.80029,-3.80029c1.0498,-1.0498 1.0498,-2.75049 0,-3.80029c-0.5249,-0.5249 -1.21777,-0.78735 -1.90015,-0.78735zM60.7627,131.63501c-0.68237,0 -1.36474,0.26245 -1.88965,0.78735l-3.81079,3.80029c-1.0498,1.0498 -1.0498,2.75049 0,3.80029c0.5249,0.5249 1.20728,0.78735 1.90015,0.78735c0.69287,0 1.37524,-0.26245 1.90015,-0.78735l3.80029,-3.80029c1.0603,-1.0498 1.0603,-2.75049 0,-3.80029c-0.5249,-0.5249 -1.20727,-0.78735 -1.90015,-0.78735zM70.26343,141.13574c-0.68237,0 -1.36474,0.26245 -1.90015,0.79785l-3.78979,3.78979c-1.0603,1.0603 -1.0603,2.75049 0,3.81079c0.5144,0.5144 1.20728,0.78735 1.90015,0.78735c0.68237,0 1.37524,-0.27295 1.88965,-0.78735l3.81079,-3.81079c1.0498,-1.0498 1.0498,-2.73999 0,-3.78979c-0.5354,-0.5354 -1.21777,-0.79785 -1.91065,-0.79785zM79.77466,150.63647c-0.69287,0 -1.38574,0.26245 -1.91065,0.78735l-3.78979,3.81079c-1.0603,1.0498 -1.0603,2.73999 0,3.78979c0.5144,0.5249 1.20728,0.79785 1.88965,0.79785c0.69287,0 1.38574,-0.27295 1.90015,-0.79785l3.81079,-3.78979c1.0498,-1.0603 1.0498,-2.75049 0,-3.81079c-0.5354,-0.5249 -1.21777,-0.78735 -1.90015,-0.78735z"
></path>
</g>
</g>
</svg>
</div>
<p class="" style="font-size: 1.15em">Amazing Value Everyday</p>
<p class="text-muted">
Items you'll love at wallet-friendly prices.
</p>
</div>
</div>
</div>
</div>
<footer class="bg-purple">
<div class="footer-content container">
<div class="row">
<div class="col-12 col-sm-6 col-md-6 col-lg-3 mb-4">
<h3
class="font-weight-bold text-white"
style="letter-spacing: -1px"
>
Ready for a New Kitchen?
</h3>
<h3 class="font-weight-bold text-orange mt-4">
<i class="fas fa-phone mr-3"></i> 0779403771
</h3>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-4 mx-auto mb-4">
<div class="navigate text-white">
<div>
<i class="far fa-lg fa-building"></i
><a class="text-white ml-3" href="#"
>(9:00 AM – 5:00 PM) Mon - Fri</a
><br />
<i class="far fa-lg fa-building"></i
><a class="text-white ml-3" href="#">(10:00 AM – 3:00 PM) Sat</a
><br />
<i class="far fa-envelope-open fa-lg"></i
><a class="text-white ml-3" href="#">info@decok.design</a>
</div>
<div class="mt-4">
<a
href="https://www.google.com/maps/dir//Decok/@0.3651594,32.6423936,16z/data=!4m8!4m7!1m0!1m5!1m1!1s0x177db9f42b497acf:0x2fcc5f9bd0a5abca!2m2!1d32.6374931!2d0.3651092!5m1!1e1"
class="btn px-5 py-2 rounded-0 btn-primary text-white shadow"
target="_blank"
rel="noopener noreferrer"
>
<i class="fas fa-lg fa-directions mr-3"></i>
Get Directions
</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-3 mb-4">
<div class="">
<h3 class="text-white" style="letter-spacing: -1px">
Free consultation for your furniture?
</h3>
<a
href="contact.html"
class="mt-3 btn bg-orange text-white shadow py-3 px-5 rounded-0"
>Contact us<i class="fas fa-arrow-right ml-3"></i>
</a>
</div>
</div>
</div>
</div>
</footer>
<script type="text/javascript">
var Tawk_API = Tawk_API || {},
Tawk_LoadStart = new Date();
(function () {
var s1 = document.createElement("script"),
s0 = document.getElementsByTagName("script")[0];
s1.async = true;
s1.src = "https://embed.tawk.to/5feb17d4df060f156a919f1e/1eqn5a60j";
s1.charset = "UTF-8";
s1.setAttribute("crossorigin", "*");
s0.parentNode.insertBefore(s1, s0);
})();
</script>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script
src="https://kit.fontawesome.com/7290f27402.js"
crossorigin="anonymous"
></script>
</body>
</html>