-
Notifications
You must be signed in to change notification settings - Fork 0
/
adopt.html
1268 lines (1228 loc) · 172 KB
/
adopt.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html>
<head>
<link rel="icon" href="logo.jpeg" >
<!-- head section analytics-->
<script>
function getCookieByName(name) {
const value = `; ${document.cookie}`;
const parts = value.split(`; ${name}=`);
if (parts.length === 2)
return parts.pop().split(';').shift();
}
function safelyParseJson(data) {
try {
return JSON.parse(data);
} catch (ex) {
return null;
}
}
function deleteCookies() {
var allCookies = document.cookie.split(';');
for (var i = 0; i < allCookies.length; i++) {
document.cookie = allCookies[i] + "=;path=/;expires=" + new Date(0).toUTCString();
}
}
var tpnCustomerSession = getCookieByName('_tpn_customer_session');
if (tpnCustomerSession) {
tpnCustomerSession = decodeURIComponent(tpnCustomerSession);
if (tpnCustomerSession) {
tpnCustomerSession = safelyParseJson(tpnCustomerSession);
if (tpnCustomerSession && !tpnCustomerSession.contact_number) {
window.localStorage.clear();
deleteCookies();
}
}
}
</script>
<!-- Google Tag Manager -->
<script>
(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0]
, j = d.createElement(s)
, dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
}
)(window, document, 'script', 'dataLayer', 'GTM-PTVB5KS');
</script>
<!-- End Google Tag Manager -->
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PTVB5KS" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<script>
(function(h, o, t, j, a, r) {
h.hj = h.hj || function() {
(h.hj.q = h.hj.q || []).push(arguments)
}
;
h._hjSettings = {
hjid: 1901217,
hjsv: 6
};
a = o.getElementsByTagName('head')[0];
r = o.createElement('script');
r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
}
)(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-156936684-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-156936684-1');
</script>
<meta name="facebook-domain-verification" content="d1taekpqw6v5wx7z9ge4ssahd9de4g"/>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-L39LTKPVQK"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-L39LTKPVQK');
</script>
<!-- head section analytics-->
<meta charset="utf-8">
<base href="/">
<title>Adopt a Dog or Cat in India, Dogs for Adoption Near You</title>
<meta name="robots" content="index, follow">
<meta name="description" content="Adopt a dog or cat near you instead buying a pet. Adopting a pet can be challenging, we have made it easy for you. Free pet adoption near you in India.">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<link rel="icon" type="image/png" href="logo.jpeg">
<meta property="og:title" content="Adopt a Dog or Cat in India, Dogs for Adoption Near You"/>
<meta property="og:image" content="//dm6g3jbka53hp.cloudfront.net/static-images/adopt-me-pet-02032021.jpg"/>
<meta property="og:description" content="Adopt a dog or cat near you instead buying a pet. Adopting a pet can be challenging, we have made it easy for you. Free pet adoption near you in India."/>
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Adopt a Dog or Cat in India, Dogs for Adoption Near You">
<meta name="twitter:description" content="Adopt a dog or cat near you instead buying a pet. Adopting a pet can be challenging, we have made it easy for you. Free pet adoption near you in India.">
<meta name="twitter:image" content="//dm6g3jbka53hp.cloudfront.net/static-images/adopt-me-pet-02032021.jpg">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="//dm6g3jbka53hp.cloudfront.net/assets-production/styles/adoptpetbowervendor.567fb451.css">
<link rel="stylesheet" href="//dm6g3jbka53hp.cloudfront.net/assets-production/styles/builtadoptpet.d35811a9.css">
</head>
<body ng-app="wdApp" class="home">
<noscript>
<img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=2089545184448569&ev=PageView&noscript=1"/>
</noscript>
<noscript>
<img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=866984660913320&ev=PageView&noscript=1"/>
</noscript>
<!-- End Facebook Pixel Code -->
<!-- analytics end -->
<!-- Add your site or application content here -->
<div class="viewport">
<!--[if lte IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<header class="header" ng-controller="HeaderController as headerCtrl" id="home-header" itemscope itemtype="http://schema.org/WPHeader">
<div class="col-sm-6 col-md-4 col-xs-4 pl-20 col-lg-4 logo-container">
<a href="main_page.html" target="_parent">
<img class="" width="50px" src="logo.jpeg">
<span class="logo.jpeg"></span>
</a>
<div class="overlay hidden-xs hidden-sm" ng-show="headerCtrl.showSubMenu" ng-mouseover="headerCtrl.showSubMenu=false"></div>
<div class="divider hidden-md hidden-sm hidden-lg hidden-xs all-materials col-md-2" ng-class="{active:headerCtrl.showSubMenu}" ng-click="headerCtrl.showSubMenu=!headerCtrl.showSubMenu;headerCtrl.showNavbar=false;">
<span class="search-all-outer">
<div class="sprite search-all-vertical"></div>
</span>
</div>
<div id="menu-opened" class="all-services" ng-class="{'all-services-animation': headerCtrl.showSubMenu }" ng-show="headerCtrl.showSubMenu" ng-cloak>
<div class="menu-items" ng-cloak>
<div class="container">
<div class="col-md-12">
<div class="pet-services">
<div class="col-md-4 col-sm-4 col-xs-12 pl-45 submenu">
<div>
<h5>Home Services</h5>
</div>
<ul class="list-unstyled" itemscope itemtype="http://www.schema.org/SiteNavigationElement">
<li itemprop="name">
<a itemprop="url" href="vet-entry.html" target="_self">
<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" enable-background="new 0 0 512 512" height="30" viewBox="0 0 512 512" width="30">
<g>
<g>
<g>
<g>
<g>
<g>
<g>
<path d="m126.504 476.879c-75.693-44.472-126.504-126.742-126.504-220.879 0-141.385 114.615-256 256-256 63.061 0 120.796 22.801 165.412 60.609l55.785 66.436c22.125 37.869 34.803 81.932 34.803 128.955 0 94.137-50.811 176.407-126.504 220.88z" fill="#fe6a16"></path>
</g>
</g>
</g>
</g>
</g>
</g>
<path d="m385.496 476.88c75.693-44.473 126.504-126.743 126.504-220.88 0-47.023-12.679-91.085-34.803-128.955l-174.442-31.635-58.081-28.916-100.646 62.087 143.173 143.173v227.986z" fill="#ea3e03"></path>
<g>
<path d="m382.183 444.048-16.196-160.488c-3.571-35.387-33.36-62.321-68.927-62.321h-82.12c-35.567 0-65.356 26.934-68.927 62.321l-16.196 160.488 34.548 23.276c55.39 37.318 127.879 37.318 183.269 0z" fill="#fff"></path>
</g>
<g>
<path d="m382.183 444.048-16.196-160.488c-3.571-35.387-33.36-62.321-68.927-62.321h-40.94v274.072c31.93-.023 63.854-9.351 91.514-27.986z" fill="#e9edf5"></path>
</g>
<g>
<path d="m268.407 392.065h-24.815c-18.97 0-34.348-15.378-34.348-34.348v-22.498c0-25.822 20.933-46.755 46.755-46.755 25.822 0 46.755 20.933 46.755 46.755v22.498c.001 18.969-15.377 34.348-34.347 34.348z" fill="#dce1eb"></path>
</g>
<g>
<path d="m256.12 288.466v103.599h12.287c18.97 0 34.348-15.378 34.348-34.348v-22.498c0-25.783-20.868-46.688-46.635-46.753z" fill="#bec3d2"></path>
</g>
<g>
<path d="m268.407 392.064c8.306 0 15.924-2.948 21.863-7.856-8.538-9.196-20.732-14.95-34.27-14.95-13.538 0-25.732 5.754-34.27 14.95 5.94 4.907 13.557 7.856 21.863 7.856z" fill="#bec3d2"></path>
</g>
<g>
<path d="m290.27 384.209c-8.513-9.168-20.66-14.913-34.15-14.947v22.802h12.287c8.307 0 15.924-2.948 21.863-7.855z" fill="#9196aa"></path>
</g>
<g>
<path d="m270.424 301.779h-28.849c-11.891 0-20.001 12.038-15.533 23.058l1.223 3.017c2.728 6.729 7.646 12.12 13.734 15.487v28.378h30v-28.378c6.088-3.367 11.006-8.758 13.734-15.487l1.223-3.017c4.469-11.02-3.64-23.058-15.532-23.058z" fill="#707789"></path>
</g>
<g>
<path d="m270.424 301.779h-14.304v69.94h14.88v-28.377c6.088-3.367 11.006-8.758 13.734-15.487l1.223-3.017c4.468-11.021-3.641-23.059-15.533-23.059z" fill="#555a66"></path>
</g>
<g>
<g>
<path d="m204.525 301.403c-6.837 0-12.38-5.543-12.38-12.38v-7.819c0-6.837 5.543-12.38 12.38-12.38 6.837 0 12.38 5.543 12.38 12.38v7.819c0 6.837-5.543 12.38-12.38 12.38z" fill="#707789"></path>
</g>
<g>
<path d="m307.475 301.403c-6.837 0-12.38-5.543-12.38-12.38v-7.819c0-6.837 5.543-12.38 12.38-12.38 6.837 0 12.38 5.543 12.38 12.38v7.819c0 6.837-5.543 12.38-12.38 12.38z" fill="#555a66"></path>
</g>
</g>
<g>
<path d="m139.142 164.146 80.057 65.913-74.44 65.927z" fill="#fff"></path>
</g>
<g>
<path d="m165.775 195.133-26.633-30.988s-24.827 56.405 5.617 131.84l19.741-21.543c20.448-22.298 20.995-56.364 1.275-79.309z" fill="#dce1eb"></path>
</g>
<g>
<path d="m372.858 164.146-80.057 65.913 74.44 65.927z" fill="#e9edf5"></path>
</g>
<g>
<path d="m346.225 195.133 26.633-30.988s24.827 56.405-5.617 131.84l-19.741-21.542c-20.448-22.299-20.995-56.365-1.275-79.31z" fill="#bec3d2"></path>
</g>
<g>
<path d="m256 512c47.248 0 91.506-12.8 129.496-35.121l-3.313-32.832c-81.07 31.997-171.296 31.997-252.366 0l-3.313 32.832c37.99 22.321 82.248 35.121 129.496 35.121z" fill="#7584f2"></path>
</g>
<g>
<path d="m382.183 444.048c-40.497 15.983-83.279 23.981-126.062 23.996v43.955c47.202-.022 91.418-12.818 129.376-35.12z" fill="#606aea"></path>
</g>
<g>
<path d="m421.399 60.599c-20.108 9.224-45.308 21.005-45.308 21.005l-97.463-36.799c-17.196-6.432-36.453-4.024-51.536 6.444l-91.034 64.947 5.549 9.201c6.379 10.249 19.941 13.243 30.042 6.633l75.018-46.889 52.908 29.329-58.704 15.765c-7.659 3.818-11.542 12.526-9.265 20.777 2.386 8.646 10.804 14.189 19.687 12.963l75.161-2.147c10.078-.288 20.091-1.732 29.84-4.303l120.903-30.481c-14.73-25.211-33.647-47.677-55.798-66.445z" fill="#ffdecf"></path>
</g>
<g>
<path d="m421.399 60.599c-20.108 9.224-45.308 21.005-45.308 21.005l-97.463-36.799c-7.291-2.727-14.951-3.848-22.508-3.456v49.033l43.454 24.089-43.454 11.669v37.698l70.333-2.009c10.078-.288 20.091-1.732 29.84-4.303l120.903-30.481c-14.729-25.212-33.646-47.678-55.797-66.446z" fill="#ffbeaa"></path>
</g>
</g>
</svg>
<span>Consult a Vet</span>
</a>
</li>
<li itemprop="name">
<a itemprop="url" href="Great.html" target="_self">
<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" enable-background="new 0 0 512 512" height="30" viewBox="0 0 512 512" width="30">
<g>
<g>
<g>
<g>
<g>
<g>
<g>
<ellipse cx="256" cy="256" fill="#fe6a16" rx="256" ry="256" transform="matrix(.707 -.707 .707 .707 -106.039 256)"></ellipse>
</g>
</g>
</g>
</g>
</g>
</g>
<path d="m512 256c0-11.129-.71-22.091-2.088-32.846l-109.744-109.744-82.424 83.755-103.075-103.075-17.039 37.51-37.51-37.51-16.717 45.461 38.534 37.722-11.382 13.668-46.951-50.599-19.77 42.571 40.053 40.052-19.467 23.377 79.327 79.327-114.4 82.875 92.572 92.572c23.449 7.079 48.321 10.884 74.081 10.884 141.385 0 256-114.615 256-256z" fill="#ea3e03"></path>
<g>
<g>
<path d="m234.675 234.518c0 31.206-25.297 0-56.503 0s-56.503 31.206-56.503 0 13.937-78.375 56.503-78.375c45.652.001 56.503 47.17 56.503 78.375z" fill="#ffce00"></path>
</g>
<g>
<path d="m178.41 156.147v78.375c31.096.157 56.266 31.123 56.266-.004-.001-31.151-10.816-78.206-56.266-78.371z" fill="#fdba12"></path>
</g>
<g>
<g>
<ellipse cx="205.447" cy="116.045" fill="#fdba12" rx="16.834" ry="26.246"></ellipse>
</g>
<g>
<ellipse cx="150.898" cy="116.045" fill="#ffce00" rx="16.834" ry="26.246"></ellipse>
</g>
</g>
<g>
<g>
<ellipse cx="242.274" cy="161.976" fill="#fdba12" rx="16.834" ry="26.246"></ellipse>
</g>
<g>
<ellipse cx="114.071" cy="161.976" fill="#ffce00" rx="16.834" ry="26.246"></ellipse>
</g>
</g>
</g>
<g>
<g>
<path d="m329.174 107.739h42.983v122.708h-42.983z" fill="#e9edf5" transform="matrix(.707 .707 -.707 .707 222.274 -198.432)"></path>
</g>
<g>
<path d="m297.323 166.942h122.708v20.324h-122.708z" fill="#cdd2e1" transform="matrix(.707 -.707 .707 .707 -20.177 305.496)"></path>
</g>
<g>
<path d="m134.575 407.052-45.23 1.493 101.549-101.548 21.868 21.868z" fill="#e9edf5"></path>
</g>
<g>
<path d="m113.668 407.742 20.907-.69 78.187-78.187-10.108-10.109z" fill="#cdd2e1"></path>
</g>
<g>
<path d="m246.434 185.538h102.858v72.715h-102.858z" fill="#fff" transform="matrix(.707 .707 -.707 .707 244.146 -145.629)"></path>
</g>
<g>
<path d="m280.101 215.36h72.715v50.261h-72.715z" fill="#e9edf5" transform="matrix(.707 -.707 .707 .707 -77.364 294.209)"></path>
</g>
<g>
<path d="m158.886 320.994h46.725v33.032h-46.725z" fill="#fff" transform="matrix(.707 .707 -.707 .707 292.035 -30.015)"></path>
</g>
<g>
<path d="m174.405 335.085h33.032v22.195h-33.032z" fill="#e9edf5" transform="matrix(.707 -.707 .707 .707 -188.869 236.396)"></path>
</g>
<g>
<path d="m185.215 217.146h102.858v131.937h-102.858z" fill="#bfe1ff" transform="matrix(.707 .707 -.707 .707 269.504 -84.41)"></path>
</g>
<g>
<path d="m189.271 276.58h131.937v50.261h-131.937z" fill="#87c7ff" transform="matrix(.707 -.707 .707 .707 -138.583 268.85)"></path>
</g>
<g>
<path d="m349.34 111.88h85.523v31.555h-85.523z" fill="#fff" transform="matrix(.707 .707 -.707 .707 205.111 -239.868)"></path>
</g>
<g>
<path d="m391.856 122.391h31.555v41.594h-31.555z" fill="#e9edf5" transform="matrix(.707 -.707 .707 .707 18.144 330.179)"></path>
</g>
</g>
</g>
</svg>
<span>Dog Training</span>
</a>
</li>
<li itemprop="name">
<a style="display:flex" itemprop="url" href="/dog-walking" target="_self">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="30" width="30" version="1.1" id="Calque_1" x="0px" y="0px" viewBox="0 0 283.5 226.8" style="enable-background:new 0 0 283.5 226.8;background: orange;border-radius: 50%;" xml:space="preserve">
<style type="text/css">
.st0 {
fill: darkblue;
}
</style>
<g id="XMLID_1_">
<path id="XMLID_10_" class="st0" d="M68.8,99.7c22.3-11.4,34.4-21.9,40.9-30.1c1.3,1,2.5,1.6,3.7,1.8c7.8,1.4,25.7,12.1,54.5,11.9 c28.8-0.1,35-1.8,38-1.3s2.5-0.2,3.2-3.2c0.6-3,0.6-21.2-4.7-35.2s-18.6-29.7-14.8-32.2c3.8-2.5,14.5,10.8,23.5,23.3s14,35,13,42.8 s-1.5,28,2.8,30.8c4.4,2.8,9.9,8.8,10.2,12.3s1,26.9,2.8,30.7c1.9,3.8,2.9,11.8,6.2,11.8s4.1,6.4,4.8,11.2s5.4,17.4,7.7,23.6 c2.3,6.2,1.8,15.7,0.8,15.7s-6.9,1.3-9.8,1.8c-2.9,0.5-9.4,0-9.2-2.8s5.2-7.1,6.2-8.3c1-1.1,0-13.3-1-15.6s-4.3-9-10.5-12.3 s-26.3-19-30-23.8c-3.6-4.8-4.5-15.6-21.3-12.8s-40.8,10-48.9,9.8c-8.1-0.1-18.3,3.2-21.6,2.7s-4.6,0-5.3,7.2 c-0.6,7.1-3.1,39.6-4.3,42.3c-1.1,2.7-3.1,14.7-4.8,14.7s-18.5-0.2-17-2.2s0.9-6.9,4.2-8.2c3.3-1.4,4.3-2.2,4.3-4.2 s-2.2-41-2.5-45.8c-0.3-4.9-1.8-14-5-17.7s-6.5-8-9.5-13c-3-5-3.8-7-3.3-12.7C72.3,109.6,70.6,104.3,68.8,99.7z"></path>
<path id="XMLID_9_" class="st0" d="M22.3,53.7c1.2,8.2,4.8,9.4,10.6,12.5c5.9,3.1,19.1,0.6,21.2,2.7c2.1,2.1,9.6,20,11,22.7 C87.2,80.2,98,70.1,103.3,63.1c-4.8-6-9-13.3-10.7-15.2c-3.1-4-7-7.6-11.8-12.3c-1.1-1.1-8.3-8.2-11-10.9c-0.7-0.7-1.7-2-2.6-3.5 c-3.6-5.7-12.7-18.4-13.4-4.5c-0.3,5.3-0.9,9.7-1.7,12.9c-0.2,0.7-0.7,1.3-1.3,1.6c-4.9,2.5-9.7,10.4-10.5,11.6s-11.4,2-15.5,3 S21.1,45.3,22.3,53.7z"></path>
</g>
</svg>
<span style="top:2px;left:4px">Dog Walking</span>
</a>
</li>
</ul>
</div>
<div class="col-md-4 col-sm-4 col-xs-12 pl-45 submenu">
<div>
<h5>PawStop</h5>
</div>
<ul class="list-unstyled" itemscope itemtype="http://www.schema.org/SiteNavigationElement">
<li itemprop="name">
<a itemprop="url" tabindex="6" href="UID_Proj_Pet_Accessories_2.html" target="_self">
<svg width="30" height="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#FFDC00;" cx="256" cy="256" r="256"/>
<path style="fill:#FFC000;" d="M281.857,510.707C411.098,497.743,512,388.657,512,256c0-0.438-0.014-0.873-0.017-1.311 l-90.253-90.253L299.763,290.502L135.686,124.5l-47.441,20l84.797,84.589L154.92,376.846l31.109,30.516l-3.99,3.525L281.857,510.707 z"/>
<polygon style="fill:#008CC3;" points="157.742,331.102 399.135,331.102 421.73,164.436 135.147,164.436 "/>
<polygon style="fill:#0074A3;" points="421.73,164.436 255.857,164.436 255.857,331.102 399.135,331.102 "/>
<polygon style="fill:#008CC3;" points="135.147,164.436 157.742,331.102 278.438,331.102 278.438,164.436 "/>
<polygon style="fill:#00BAFF;" points="167.376,189.346 182.317,306.038 207.593,306.038 196.581,189.346 "/>
<polygon style="fill:#008CC3;" points="360.296,189.346 349.284,306.038 374.56,306.038 389.501,189.346 "/>
<polygon style="fill:#00BAFF;" points="230.205,189.346 237.301,306.038 260.173,306.038 256.631,189.346 "/>
<polygon style="fill:#008CC3;" points="300.245,189.346 296.704,306.038 319.575,306.038 326.672,189.346 "/>
<circle style="fill:#00131E;" cx="356.65" cy="391.35" r="24.5"/>
<circle style="fill:#00263F;" cx="196.81" cy="391.35" r="24.5"/>
<polygon style="fill:#005C83;" points="395.936,376.846 154.92,376.846 118.572,144.5 88.245,144.5 88.245,124.5 135.686,124.5 172.034,356.846 395.936,356.846 "/>
<rect x="278.44" y="356.85" style="fill:#00263F;" width="117.5" height="20"/>
</svg>
<span>Online Pet Shop</span>
</a>
</li>
<li itemprop="name">
<a itemprop="url" href="UID_Proj_GiveUpPet_2.html" target="_self">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="30" height="30" x="0" y="0" viewBox="0 0 512.036 512.036" style="enable-background:new 0 0 512 512" xml:space="preserve" class="">
<circle r="256.018" cx="256.018" cy="256.018" fill="#f5f525" shape="circle"/>
<g transform="matrix(0.7,0,0,0.7,76.80504412651064,76.80534456968309)">
<path xmlns="http://www.w3.org/2000/svg" d="m55.108 194.321c-18.316 0-33.503-17.163-38.84-23.194-5.49-6.204-4.911-15.684 1.293-21.174 6.204-5.489 15.684-4.911 21.174 1.293 10.148 11.468 15.239 12.891 16.152 13.058.61-.388 3.157-2.38 6.855-10.329 3.617-7.771 6.798-17.774 10.167-28.363 4.333-13.623 8.814-27.709 14.933-38.952 8.857-16.275 20.394-24.528 34.29-24.528 32.024 0 46.995 33.252 53.914 61.147 6.482 26.13 7.342 51.826 7.375 52.907.256 8.28-6.249 15.2-14.529 15.456-8.274.248-15.195-6.244-15.456-14.52-.007-.237-.828-23.948-6.602-47-2.861-11.423-10.996-37.99-24.703-37.99-1.92 0-4.962 3.398-7.939 8.868-4.749 8.727-8.789 21.426-12.695 33.706-8.885 27.931-17.278 54.314-39.414 58.991-2.022.428-4.017.624-5.975.624z" fill="#fcb143" data-original="#fcb143" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m387.607 37.573 116.893-29.213s-2.269 81.09-47.93 98.482" fill="#fa9801" data-original="#fa9801" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m416.12 66.212 40.45 40.63c25.88-9.86 37.82-40.18 43.31-64.6 0 0-36.94.03-67.36 13.55z" fill="#e5ecf1" data-original="#e5ecf1" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m291.364 37.573-116.893-29.213s2.269 81.09 47.93 98.482" fill="#fa9801" data-original="#fa9801" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m450.71 345.643-15.28 19.17-60.51 75.9h-154.33l-110.24-64.5 6.01-60.6c-40.01-104.87 30.68-152.18 112.43-170.4 49.3-10.99 102.62-11.4 138.12-7.48 106.23 11.73 116.25 148.56 83.8 207.91z" fill="#fcb143" data-original="#fcb143" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m435.43 364.813-60.51 75.9h-154.33l-110.24-64.5 6.01-60.6c-40.01-104.87 30.68-152.18 112.43-170.4l37.64 36.17s-70.58 183.11 153.67 183.11c5.39 0 10.49.11 15.33.32z" fill="#fa9801" data-original="#fa9801" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m492.17 402.393-100.61 85.82c-12.89 11-29.59 16.49-46.49 15.3l-236.58-16.66-67.32 14.58-33.67-127.48 71.52-40.61 142.07-79.64c6.03-3.38 12.56-4.98 19.01-4.98 13.63 0 26.86 7.17 34 19.9 9.74 17.37 4.81 39.28-11.42 50.8l-69.55 49.38c16.93 9.75 35.21 17.12 54.33 21.84l92.23 22.74 111.43-67.74c15.92-9.68 36.63-5.25 47.19 10.11 10.2 14.82 7.549 34.96-6.14 46.64z" fill="#d38678" data-original="#d38678" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m492.17 402.393-100.61 85.82c-12.89 11-29.59 16.49-46.49 15.3l-236.58-16.66-67.32 14.58-33.67-127.48 71.52-40.61 142.07-79.64c6.03-3.38 12.56-4.98 19.01-4.98 13.63 0 26.86 7.17 34 19.9-14.11-24.84-187.44 87.23-187.44 125.02s200.69 80.8 259.329 71.67c58.651-9.12 94.271-71.12 146.181-62.92z" fill="#c86e57" data-original="#c86e57" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m262.851 66.212-40.45 40.63c-25.88-9.86-37.82-40.18-43.31-64.6 0 0 36.94.03 67.36 13.55z" fill="#e5ecf1" data-original="#e5ecf1" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m387.607 37.573c-32.081-1.284-64.162-1.284-96.243 0-37.524 1.502-67.454 31.745-68.963 69.269-.778 19.345-.778 38.69 0 58.035 1.509 37.524 31.439 67.767 68.963 69.269 32.081 1.284 64.162 1.284 96.243 0 37.524-1.502 67.454-31.745 68.963-69.269.778-19.345.778-38.69 0-58.035-1.51-37.524-31.439-67.767-68.963-69.269z" fill="#fcb143" data-original="#fcb143" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m297.391 234.373c-2.01-.07-4.02-.15-6.03-.23-37.52-1.5-67.45-31.74-68.96-69.27-.78-19.34-.78-38.69 0-58.03 1.51-37.53 31.44-67.77 68.96-69.27 2.01-.08 4.02-.16 6.03-.23-13.04 12.07-22.15 37.54-22.77 67.25-.43 20.84-.43 41.69 0 62.53.62 29.71 9.73 55.18 22.77 67.25z" fill="#fa9801" data-original="#fa9801" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m313.05 143.823c6.43-16.11 15.89-26.29 26.44-26.29 10.54 0 20 10.18 26.44 26.29v57.11h-52.582" fill="#3c5959" data-original="#3c5959" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m457.145 138.375c-.03 8.83-.22 17.67-.57 26.5-1.51 37.53-31.44 67.77-68.97 69.27-32.08 1.29-64.16 1.29-96.24 0-37.52-1.5-67.45-31.74-68.96-69.27-.36-8.83-.55-17.67-.58-26.5h68.78c26.99 0 48.88 21.88 48.88 48.88 0-27 21.89-48.88 48.89-48.88z" fill="#e5ecf1" data-original="#e5ecf1" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m297.378 234.356c-13.03-12.077-22.133-37.536-22.752-67.233-.198-9.581-.294-19.165-.31-28.748h-52.486c.03 8.83.22 17.67.58 26.5 1.51 37.53 31.44 67.77 68.96 69.27 2.003.08 4.006.141 6.008.211z" fill="#b6c1cc" data-original="#b6c1cc" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m226.49 321.525c3.047 0 6.14-.734 9.015-2.268l9.297-4.958c3.655-1.949 5.038-6.492 3.088-10.147s-6.494-5.038-10.147-3.088l-9.297 4.958c-1.814.967-4.113.415-5.233-1.258-6.229-9.3-8.179-18.791-8.214-18.961-.79-4.057-4.717-6.709-8.774-5.932-4.068.781-6.733 4.711-5.953 8.779.097.504 2.462 12.492 10.477 24.46 3.639 5.433 9.599 8.415 15.741 8.415z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m504.49 351.504c-9.223-13.416-24.858-19.961-40.098-18.183 13.924-38.322 15.047-95.111-6.89-139.439 3.908-8.986 6.159-18.697 6.562-28.704.714-17.755.768-35.736.179-53.531 44.963-22.409 47.659-99.684 47.754-103.078.065-2.345-.97-4.586-2.799-6.056s-4.24-2-6.517-1.43l-115.867 28.958c-31.412-1.229-63.243-1.228-94.655 0l-115.87-28.957c-2.278-.57-4.688-.039-6.517 1.43-1.829 1.47-2.864 3.711-2.799 6.056.095 3.394 2.79 80.669 47.754 103.078-.323 9.76-.45 19.575-.381 29.38-9.48 2.507-18.417 5.332-26.791 8.476-1.098-8.211-2.754-18.054-5.225-28.026-13.703-55.248-40.844-66.844-61.199-66.844-20.991 0-33.816 15.469-40.877 28.444-6.465 11.874-11.053 26.307-15.508 40.322-3.288 10.33-6.393 20.087-9.805 27.41-.738 1.586-1.402 2.858-1.978 3.87-2.014-1.58-4.875-4.179-8.617-8.408-3.983-4.498-9.48-7.177-15.478-7.543-5.999-.366-11.781 1.626-16.279 5.61-4.499 3.983-7.177 9.479-7.543 15.477-.366 6 1.626 11.781 5.602 16.271 5.618 6.366 22.712 25.737 44.463 25.737 2.523 0 5.057-.267 7.518-.792 26.41-5.57 35.868-35.294 45.02-64.058 3.789-11.929 7.706-24.264 12.128-32.382 1.205-2.211 2.229-3.681 2.945-4.573 4.631 2.124 11.093 12.999 15.834 31.929 2.277 9.077 4.104 19.801 5.285 31.006.364 3.477.61 6.443.778 8.783-9.818 6.985-18.177 14.749-25.027 23.281-2.593 3.23-2.077 7.951 1.153 10.544 1.385 1.111 3.043 1.652 4.69 1.652 2.196 0 4.372-.96 5.854-2.805 17.013-21.191 45.024-37.286 83.327-47.915.082 2.9.175 5.796.291 8.686.807 20.049 9.028 38.917 23.15 53.127 14.157 14.245 32.981 22.532 53.007 23.334 16.065.643 32.243.964 48.421.964s32.356-.321 48.421-.964c20.025-.802 38.85-9.089 53.007-23.334 2.647-2.663 5.086-5.49 7.308-8.458 7.577 18.967 11.553 41.244 11.318 64.122-.258 25.179-5.613 49.368-14.706 66.718l-106.386 64.667-89.191-21.993c-14.525-3.585-28.583-8.765-41.931-15.44l59.694-42.383c19.408-13.775 25.263-39.821 13.62-60.584-8.21-14.638-23.745-23.731-40.541-23.731-7.906 0-15.748 2.053-22.677 5.938l-97.871 54.863c-8.899-28.02-9.539-52.76-1.88-73.639 1.427-3.889-.569-8.198-4.458-9.624-3.887-1.428-8.198.568-9.624 4.458-9.108 24.827-8.218 53.829 2.624 86.282l-30.896 17.319-71.52 40.61c-2.961 1.681-4.417 5.146-3.548 8.437l33.67 127.48c1.024 3.878 4.92 6.264 8.839 5.415l66.273-14.354 235.512 16.585c1.726.122 3.445.182 5.16.182 17.135 0 33.561-6.032 46.724-17.256l26.51-22.61c3.151-2.688 3.527-7.422.839-10.574-2.689-3.151-7.422-3.527-10.574-.839l-26.509 22.61c-11.469 9.78-26.06 14.584-41.097 13.525l-236.58-16.66c-.708-.049-1.42 0-2.114.151l-60.312 13.063-30.362-114.964 66.461-37.738 142.07-79.64c4.694-2.631 9.999-4.022 15.342-4.022 11.378 0 21.899 6.157 27.458 16.068 7.882 14.057 3.919 31.69-9.22 41.016l-69.55 49.38c-2.084 1.479-3.271 3.918-3.15 6.471.122 2.553 1.534 4.868 3.749 6.144 17.605 10.139 36.539 17.75 56.277 22.623l92.22 22.74c1.938.479 3.986.164 5.691-.873l111.441-67.74c12.513-7.61 28.816-4.117 37.115 7.954 8.049 11.696 5.973 27.465-4.829 36.682l-51.28 43.74c-3.151 2.688-3.527 7.422-.839 10.573s7.422 3.527 10.573.839l51.28-43.741c16.669-14.22 19.872-38.552 7.454-56.595zm-345.731-190.117c-1.271-12.068-3.173-23.201-5.653-33.086-4.99-19.921-14.587-43.668-31.976-43.668-5.16 0-9.775 4.062-14.526 12.782-5.11 9.382-9.249 22.414-13.255 35.028-8.205 25.787-15.955 50.143-33.831 53.914-1.45.309-2.933.465-4.408.465-14.983 0-28.707-15.552-33.225-20.672-1.327-1.498-1.99-3.424-1.868-5.422.122-2 1.015-3.833 2.515-5.161 1.498-1.326 3.423-1.987 5.422-1.868 2 .122 3.833 1.015 5.159 2.513 10.222 11.551 16.742 14.785 20.412 15.464 1.868.346 3.804-.031 5.407-1.057 3.149-2.014 6.381-6.551 9.606-13.48 3.816-8.191 7.063-18.393 10.52-29.255 4.223-13.285 8.59-27.022 14.37-37.637 7.549-13.872 16.611-20.615 27.703-20.615 27.181 0 40.366 30.157 46.64 55.454 2.729 11.015 4.408 21.921 5.419 30.368-5.006 2.286-9.767 4.707-14.295 7.256-.044-.433-.089-.873-.136-1.323zm304.018-66.276c-2.481-13.383-8.327-25.889-17.05-36.393 16.666-5.611 33.957-7.717 44.392-8.503-4.889 17.102-13.219 35.097-27.342 44.896zm30.95-60.175c-11.398.575-36.671 2.894-59.894 12.178-4.762-3.772-9.907-6.962-15.342-9.528l77.73-19.426c-.486 4.547-1.265 10.351-2.494 16.776zm-106.42 10.131c16.229.65 31.489 7.369 42.967 18.919 11.469 11.541 18.146 26.868 18.802 43.157.317 7.875.495 15.797.55 23.727h-61.254c-6.522 0-12.783 1.126-18.615 3.172-7.814-15.55-18.393-24.009-30.267-24.009-11.885 0-22.465 8.459-30.271 24.01-5.833-2.047-12.096-3.174-18.62-3.174h-61.254c.055-7.929.233-15.851.55-23.726.655-16.289 7.333-31.616 18.802-43.157 11.479-11.551 26.738-18.269 42.967-18.919 15.866-.635 31.844-.953 47.821-.953s31.956.318 47.822.953zm-30.935 95.799c-6.901 4.775-12.683 11.049-16.886 18.346-4.202-7.296-9.982-13.568-16.882-18.343 4.997-9.894 11.212-15.836 16.887-15.836 5.666 0 11.879 5.941 16.881 15.833zm-95.892-103.281c-5.435 2.565-10.58 5.755-15.342 9.528-23.223-9.283-48.496-11.603-59.894-12.178-1.229-6.425-2.008-12.229-2.494-16.776zm-71.63 12.622c10.424.78 27.701 2.88 44.397 8.509-8.724 10.504-14.571 23.01-17.052 36.395-14.127-9.801-22.458-27.8-27.345-44.904zm59.847 157.526c-11.469-11.541-18.146-26.868-18.802-43.157-.25-6.213-.41-12.455-.497-18.706h61.201c22.82 0 41.386 18.566 41.386 41.386v40.311c-13.475-.084-26.938-.38-40.321-.916-16.229-.649-31.488-7.368-42.967-18.918zm181.577 0c-11.479 11.55-26.738 18.269-42.967 18.919-13.383.536-26.846.832-40.321.915v-40.311c0-22.821 18.566-41.386 41.386-41.386h61.201c-.087 6.251-.247 12.493-.497 18.705-.655 16.29-7.333 31.617-18.802 43.158z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m280.408 96.365c-5.308 0-9.625 6.421-9.625 14.314s4.318 14.313 9.625 14.313 9.625-6.421 9.625-14.313-4.317-14.314-9.625-14.314z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m398.563 124.992c5.308 0 9.626-6.421 9.626-14.313s-4.318-14.314-9.626-14.314-9.625 6.421-9.625 14.314 4.318 14.313 9.625 14.313z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m401.021 177.887c6.052-2.506 6.041-11.347 0-13.85-2.964-1.228-6.521-.385-8.589 2.079-1.958 2.333-2.312 5.685-.886 8.376 1.773 3.344 5.972 4.872 9.475 3.395z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m383.1 191.546c-1.216-2.88-4.156-4.781-7.297-4.62-3.004.153-5.672 2.144-6.688 4.967-1.042 2.896-.149 6.223 2.185 8.225 2.466 2.115 6.139 2.365 8.884.636 3.083-1.943 4.229-5.858 2.916-9.208z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m413.93 193.506c-2.57-6.223-11.724-5.954-13.985.341-1.045 2.911-.148 6.25 2.211 8.251 2.477 2.101 6.107 2.336 8.85.606 3.069-1.936 4.265-5.849 2.924-9.198z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m287.74 168.096c-2.531-6.128-11.529-5.995-13.917.17-1.202 3.103-.153 6.737 2.525 8.718 2.41 1.783 5.727 1.937 8.302.415 3.146-1.857 4.517-5.924 3.09-9.303z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m309.72 191.546c-2.399-6.005-11.203-6.017-13.775-.167-1.323 3.009-.505 6.643 2.011 8.767 2.318 1.956 5.696 2.318 8.374.886 3.364-1.799 4.846-5.962 3.39-9.486z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m278.89 193.506c-2.423-6.202-11.572-5.937-13.914.171-1.121 2.923-.279 6.327 2.098 8.371 2.514 2.162 6.219 2.407 8.994.602 2.975-1.936 4.209-5.865 2.822-9.144z" fill="#000000" data-original="#000000" style=""/>
</g>
</svg>
<span>Re-home a pet</span>
</a>
</li>
<li itemprop="name">
<a itemprop="url" href="adopt.html" target="_self">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="30" height="30" x="0" y="0" viewBox="0 0 58 58" style="enable-background:new 0 0 512 512" xml:space="preserve" class="">
<circle r="29" cx="29" cy="29" fill="#ea3f06" shape="circle"/>
<g transform="matrix(0.7,0,0,0.7,8.70805659592152,8.700000000000003)">
<g xmlns="http://www.w3.org/2000/svg" id="Page-1" fill="none" fill-rule="evenodd">
<g id="033---Pet-Adoption" fill-rule="nonzero">
<path id="Shape" d="m52 20.63v35.37c0 1.1045695-.8954305 2-2 2h-42c-1.1045695 0-2-.8954305-2-2v-35.37l23-18.63z" fill="#ffff00" data-original="#f0c419" style="" class=""/>
<path id="Shape" d="m48 31.2c-.0008935.7019827-.0443064 1.4032668-.13 2.1-.78 6.64-5.38 16.23-18.87 20.7-13.49-4.47-18.09-14.06-18.87-20.7-.0856936-.6967332-.1291065-1.3980173-.13-2.1 0-6.53 3.88-12.2 9.5-12.2 3.647953.0314455 7.107143 1.6263142 9.5 4.38 2.392857-2.7536858 5.852047-4.3485545 9.5-4.38 5.62 0 9.5 5.67 9.5 12.2z" fill="#df4d60" data-original="#df4d60" style="" class=""/>
<path id="Shape" d="m48 31.2c-.0008935.7019827-.0443064 1.4032668-.13 2.1-2.73 5.65-10.14 9.7-18.87 9.7s-16.14-4.05-18.87-9.7c-.0856936-.6967332-.1291065-1.3980173-.13-2.1 0-6.53 3.88-12.2 9.5-12.2 3.647953.0314455 7.107143 1.6263142 9.5 4.38 2.392857-2.7536858 5.852047-4.3485545 9.5-4.38 5.62 0 9.5 5.67 9.5 12.2z" fill="#ff5364" data-original="#ff5364" style="" class=""/>
<g fill="#ffff00">
<path id="Shape" d="m29 46c1.684 0 2.526 1 4.21 1 3.368 0 3.368-4 1.684-6s-2.526-6-5.894-6-4.21 4-5.894 6-1.684 6 1.684 6c1.684 0 2.526-1 4.21-1z" fill="#ffff00" data-original="#35495e" style="" class=""/>
<ellipse id="Oval" cx="24" cy="28.976" rx="3" ry="4" transform="matrix(.985 -.171 .171 .985 -4.59 4.517)" fill="#ffff00" data-original="#35495e" style="" class=""/>
<ellipse id="Oval" cx="18.549" cy="36.96" rx="2.5" ry="3" transform="matrix(.955 -.297 .297 .955 -10.13 7.167)" fill="#ffff00" data-original="#35495e" style="" class=""/>
<ellipse id="Oval" cx="34.034" cy="28.975" rx="4" ry="3" transform="matrix(.171 -.985 .985 .171 -.32 57.57)" fill="#ffff00" data-original="#35495e" style="" class=""/>
<ellipse id="Oval" cx="39.451" cy="36.96" rx="3" ry="2.5" transform="matrix(.297 -.955 .955 .297 -7.549 63.67)" fill="#ffff00" data-original="#ffff00" style="" class=""/>
</g>
<path id="Shape" d="m39 9v-7c0-1.1045695.8954305-2 2-2h4c1.1045695 0 2 .8954305 2 2v12z" fill="#e57e25" data-original="#e57e25" style=""/>
<path id="Shape" d="m54.849 22.636-25.849-18.19-25.849 18.19c-.90338293.6138673-2.1321805.3894667-2.76028299-.5040774-.62810248-.893544-.42319791-2.1257425.46028299-2.7679226l27-19c.6899868-.48492424 1.6100132-.48492424 2.3 0l27 19c.5972433.4058391.9293507 1.1021012.868902 1.8216503-.0604488.7195491-.5040663 1.3506432-1.1606491 1.6511494-.6565827.3005062-1.4241672.2237575-2.0082529-.2007997z" fill="#f29c1f" data-original="#f29c1f" style=""/>
</g>
</g>
</g>
</svg>
<span>Adopt a pet</span>
</a>
</li>
<li itemprop="name">
<a itemprop="url" href="joinus.html" target="_self">
<svg xmlns="http://www.w3.org/2000/svg" height="30" viewBox="0 0 128 128" width="30">
<g>
<g>
<circle cx="64" cy="63.997" fill="#fabeab" r="62.25"/>
<circle cx="64" cy="63.997" fill="#ea3e02" r="52.25"/>
<g fill="#face00">
<path d="m72.812 37.125h-17.625a5 5 0 0 1 -5-5 5 5 0 0 1 5-5h17.625a5 5 0 0 1 5 5 5 5 0 0 1 -5 5z"/>
<path d="m77.812 52.141a5 5 0 0 0 -5-5h-17.625a5 5 0 0 0 -5 5 5 5 0 0 0 5 5h3.813v33.734h-3.813a5 5 0 0 0 -5 5 5 5 0 0 0 5 5h17.625a5 5 0 0 0 5-5 5 5 0 0 0 -5-5h-3.812v-33.734h3.812a5 5 0 0 0 5-5z"/>
</g>
</g>
<g>
<path d="m64 0a64 64 0 1 0 64 64 64.072 64.072 0 0 0 -64-64zm0 124.5a60.5 60.5 0 1 1 60.5-60.5 60.569 60.569 0 0 1 -60.5 60.5z"/>
<path d="m64 10a53.536 53.536 0 0 0 -38.966 16.65 1.75 1.75 0 1 0 2.526 2.422 50.475 50.475 0 1 1 -14.06 34.928 1.75 1.75 0 0 0 -3.5 0 54 54 0 1 0 54-54z"/>
<path d="m13.683 49.787a1.75 1.75 0 0 0 2.2-1.135 50.2 50.2 0 0 1 2.083-5.413 1.75 1.75 0 0 0 -3.188-1.445 53.552 53.552 0 0 0 -2.229 5.794 1.75 1.75 0 0 0 1.134 2.199z"/>
<path d="m55.187 38.875h17.625a6.75 6.75 0 0 0 0-13.5h-17.625a6.75 6.75 0 0 0 0 13.5zm0-10h17.625a3.25 3.25 0 0 1 0 6.5h-17.625a3.25 3.25 0 0 1 0-6.5z"/>
<path d="m55.187 89.125a6.75 6.75 0 0 0 0 13.5h17.625a1.75 1.75 0 1 0 0-3.5h-17.625a3.25 3.25 0 0 1 0-6.5h3.813a1.75 1.75 0 0 0 1.75-1.75v-33.734a1.75 1.75 0 0 0 -1.75-1.75h-3.813a3.25 3.25 0 0 1 0-6.5h17.625a3.25 3.25 0 0 1 0 6.5h-3.812a1.749 1.749 0 0 0 -1.75 1.75v33.734a1.749 1.749 0 0 0 1.75 1.75h3.812a1.75 1.75 0 1 0 0-3.5h-2.062v-30.234h2.062a6.75 6.75 0 0 0 0-13.5h-17.625a6.75 6.75 0 0 0 0 13.5h2.063v30.234z"/>
</g>
</g>
</svg>
<span>About Us</span>
</a>
</li>
</ul>
</div>
<div class="col-md-4 col-sm-4 col-xs-12 pl-45 last submenu social-icons-container">
<div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="close-menu hidden-lg hidden-md" ng-click="headerCtrl.showSubMenu=false">
Close
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" width="12" height="12" viewBox="0 0 123.05 123.05" fill="white" style="enable-background:new 0 0 123.05 123.05;" xml:space="preserve">
<g>
<path d="M121.325,10.925l-8.5-8.399c-2.3-2.3-6.1-2.3-8.5,0l-42.4,42.399L18.726,1.726c-2.301-2.301-6.101-2.301-8.5,0l-8.5,8.5 c-2.301,2.3-2.301,6.1,0,8.5l43.1,43.1l-42.3,42.5c-2.3,2.3-2.3,6.1,0,8.5l8.5,8.5c2.3,2.3,6.1,2.3,8.5,0l42.399-42.4l42.4,42.4 c2.3,2.3,6.1,2.3,8.5,0l8.5-8.5c2.3-2.3,2.3-6.1,0-8.5l-42.5-42.4l42.4-42.399C123.625,17.125,123.625,13.325,121.325,10.925z"/>
</g>
</svg>
</div>
</div>
</div>
<div class="menu-mobile" ng-cloak ng-if="headerCtrl.show_menu_content">
<div class="menu-content">
<a href="tel:1800-123-0025">
<button class="contact-button sprite-before">
Call Us <i class="customer-sprite green-arrow"></i>
</button>
</a>
<div class="all-services" ng-cloak>
<div class="menu-items" ng-cloak="">
<div class="container">
<div class="col-md-12">
<div class="services">
<div class="col-md-4 col-sm-4 col-xs-12 pl-45 last submenu">
<div>
<h5>Our Services</h5>
</div>
<ul class="list-unstyled" itemscope itemtype="http://www.schema.org/SiteNavigationElement">
<li itemprop="name">
<a itemprop="url" tabindex="6" href="/online-veterinary-service" target="_self">
<svg width="17" height="17">
<path fill="#87BBFD" class="hover-fillLight" d="M2 16a1 1 0 0 1-1-1V9a4 4 0 0 1 8 0v7H2zm3-9a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"></path>
<path fill="#6772E5" class="hover-fillDark" d="M15 16H9a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h.55a2.5 2.5 0 0 1 4.9 0H15a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1z"></path>
<path fill="#87BBFD" class="hover-fillLight" d="M11 12h2v4h-2v-4z"></path>
</svg>
Online Vet
</a>
</li>
<li itemprop="name">
<a itemprop="url" tabindex="6" href="/dog-training" target="_self">
<svg width="17" height="17">
<path fill="#6772E5" class="hover-fillDark" d="M1.5 4h14c.828 0 1.5.67 1.5 1.5v8a1.5 1.5 0 0 1-1.5 1.5h-14A1.5 1.5 0 0 1 0 13.5v-8C0 4.67.67 4 1.5 4z"></path>
<path fill="#87BBFD" class="hover-fillLight" d="M13 15V4h2v11h-2zM2 4h2v11H2V4z"></path>
<path fill="#6772E5" class="hover-fillDark" d="M11.5 3.5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1V4H4v-.5A2.5 2.5 0 0 1 6.5 1h4A2.5 2.5 0 0 1 13 3.5V4h-1.5v-.5z"></path>
</svg>
Dog Training
<li itemprop="name">
<a itemprop="url" tabindex="6" href="Great.html" target="_self">
<svg width="17" height="17">
<path fill="#6772E5" class="hover-fillDark" d="M1.5 4h14c.828 0 1.5.67 1.5 1.5v8a1.5 1.5 0 0 1-1.5 1.5h-14A1.5 1.5 0 0 1 0 13.5v-8C0 4.67.67 4 1.5 4z"></path>
<path fill="#87BBFD" class="hover-fillLight" d="M13 15V4h2v11h-2zM2 4h2v11H2V4z"></path>
<path fill="#6772E5" class="hover-fillDark" d="M11.5 3.5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1V4H4v-.5A2.5 2.5 0 0 1 6.5 1h4A2.5 2.5 0 0 1 13 3.5V4h-1.5v-.5z"></path>
</svg>
Dog Training
</a>
</li>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<button class="close-menu" ng-click="headerCtrl.show_menu_content = false;">
Close Menu
<i class="customer-sprite white-cross"></i>
</button>
</div>
<div class="pull-right">
<div class="menu-whatsapp-container whatsapp-cta-icons">
<a id="whatsapp-contact-desktop" href="https://web.whatsapp.com/send?phone=+919354074426" class="hidden-sm hidden-xs">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="45" height="45">
<path fill="#fff" d="M4.868,43.303l2.694-9.835C5.9,30.59,5.026,27.324,5.027,23.979C5.032,13.514,13.548,5,24.014,5c5.079,0.002,9.845,1.979,13.43,5.566c3.584,3.588,5.558,8.356,5.556,13.428c-0.004,10.465-8.522,18.98-18.986,18.98c-0.001,0,0,0,0,0h-0.008c-3.177-0.001-6.3-0.798-9.073-2.311L4.868,43.303z"/>
<path fill="#fff" d="M4.868,43.803c-0.132,0-0.26-0.052-0.355-0.148c-0.125-0.127-0.174-0.312-0.127-0.483l2.639-9.636c-1.636-2.906-2.499-6.206-2.497-9.556C4.532,13.238,13.273,4.5,24.014,4.5c5.21,0.002,10.105,2.031,13.784,5.713c3.679,3.683,5.704,8.577,5.702,13.781c-0.004,10.741-8.746,19.48-19.486,19.48c-3.189-0.001-6.344-0.788-9.144-2.277l-9.875,2.589C4.953,43.798,4.911,43.803,4.868,43.803z"/>
<path fill="#cfd8dc" d="M24.014,5c5.079,0.002,9.845,1.979,13.43,5.566c3.584,3.588,5.558,8.356,5.556,13.428c-0.004,10.465-8.522,18.98-18.986,18.98h-0.008c-3.177-0.001-6.3-0.798-9.073-2.311L4.868,43.303l2.694-9.835C5.9,30.59,5.026,27.324,5.027,23.979C5.032,13.514,13.548,5,24.014,5 M24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974 M24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974 M24.014,4C24.014,4,24.014,4,24.014,4C12.998,4,4.032,12.962,4.027,23.979c-0.001,3.367,0.849,6.685,2.461,9.622l-2.585,9.439c-0.094,0.345,0.002,0.713,0.254,0.967c0.19,0.192,0.447,0.297,0.711,0.297c0.085,0,0.17-0.011,0.254-0.033l9.687-2.54c2.828,1.468,5.998,2.243,9.197,2.244c11.024,0,19.99-8.963,19.995-19.98c0.002-5.339-2.075-10.359-5.848-14.135C34.378,6.083,29.357,4.002,24.014,4L24.014,4z"/>
<path fill="#40c351" d="M35.176,12.832c-2.98-2.982-6.941-4.625-11.157-4.626c-8.704,0-15.783,7.076-15.787,15.774c-0.001,2.981,0.833,5.883,2.413,8.396l0.376,0.597l-1.595,5.821l5.973-1.566l0.577,0.342c2.422,1.438,5.2,2.198,8.032,2.199h0.006c8.698,0,15.777-7.077,15.78-15.776C39.795,19.778,38.156,15.814,35.176,12.832z"/>
<path fill="#fff" fill-rule="evenodd" d="M19.268,16.045c-0.355-0.79-0.729-0.806-1.068-0.82c-0.277-0.012-0.593-0.011-0.909-0.011c-0.316,0-0.83,0.119-1.265,0.594c-0.435,0.475-1.661,1.622-1.661,3.956c0,2.334,1.7,4.59,1.937,4.906c0.237,0.316,3.282,5.259,8.104,7.161c4.007,1.58,4.823,1.266,5.693,1.187c0.87-0.079,2.807-1.147,3.202-2.255c0.395-1.108,0.395-2.057,0.277-2.255c-0.119-0.198-0.435-0.316-0.909-0.554s-2.807-1.385-3.242-1.543c-0.435-0.158-0.751-0.237-1.068,0.238c-0.316,0.474-1.225,1.543-1.502,1.859c-0.277,0.317-0.554,0.357-1.028,0.119c-0.474-0.238-2.002-0.738-3.815-2.354c-1.41-1.257-2.362-2.81-2.639-3.285c-0.277-0.474-0.03-0.731,0.208-0.968c0.213-0.213,0.474-0.554,0.712-0.831c0.237-0.277,0.316-0.475,0.474-0.791c0.158-0.317,0.079-0.594-0.04-0.831C20.612,19.329,19.69,16.983,19.268,16.045z" clip-rule="evenodd"/>
</svg>
</a>
<a id="whatsapp-contact-mobile" href="https://wa.me/919354074426" class="hidden-lg hidden-md">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="45" height="45">
<path fill="#fff" d="M4.868,43.303l2.694-9.835C5.9,30.59,5.026,27.324,5.027,23.979C5.032,13.514,13.548,5,24.014,5c5.079,0.002,9.845,1.979,13.43,5.566c3.584,3.588,5.558,8.356,5.556,13.428c-0.004,10.465-8.522,18.98-18.986,18.98c-0.001,0,0,0,0,0h-0.008c-3.177-0.001-6.3-0.798-9.073-2.311L4.868,43.303z"/>
<path fill="#fff" d="M4.868,43.803c-0.132,0-0.26-0.052-0.355-0.148c-0.125-0.127-0.174-0.312-0.127-0.483l2.639-9.636c-1.636-2.906-2.499-6.206-2.497-9.556C4.532,13.238,13.273,4.5,24.014,4.5c5.21,0.002,10.105,2.031,13.784,5.713c3.679,3.683,5.704,8.577,5.702,13.781c-0.004,10.741-8.746,19.48-19.486,19.48c-3.189-0.001-6.344-0.788-9.144-2.277l-9.875,2.589C4.953,43.798,4.911,43.803,4.868,43.803z"/>
<path fill="#cfd8dc" d="M24.014,5c5.079,0.002,9.845,1.979,13.43,5.566c3.584,3.588,5.558,8.356,5.556,13.428c-0.004,10.465-8.522,18.98-18.986,18.98h-0.008c-3.177-0.001-6.3-0.798-9.073-2.311L4.868,43.303l2.694-9.835C5.9,30.59,5.026,27.324,5.027,23.979C5.032,13.514,13.548,5,24.014,5 M24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974 M24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974 M24.014,4C24.014,4,24.014,4,24.014,4C12.998,4,4.032,12.962,4.027,23.979c-0.001,3.367,0.849,6.685,2.461,9.622l-2.585,9.439c-0.094,0.345,0.002,0.713,0.254,0.967c0.19,0.192,0.447,0.297,0.711,0.297c0.085,0,0.17-0.011,0.254-0.033l9.687-2.54c2.828,1.468,5.998,2.243,9.197,2.244c11.024,0,19.99-8.963,19.995-19.98c0.002-5.339-2.075-10.359-5.848-14.135C34.378,6.083,29.357,4.002,24.014,4L24.014,4z"/>
<path fill="#40c351" d="M35.176,12.832c-2.98-2.982-6.941-4.625-11.157-4.626c-8.704,0-15.783,7.076-15.787,15.774c-0.001,2.981,0.833,5.883,2.413,8.396l0.376,0.597l-1.595,5.821l5.973-1.566l0.577,0.342c2.422,1.438,5.2,2.198,8.032,2.199h0.006c8.698,0,15.777-7.077,15.78-15.776C39.795,19.778,38.156,15.814,35.176,12.832z"/>
<path fill="#fff" fill-rule="evenodd" d="M19.268,16.045c-0.355-0.79-0.729-0.806-1.068-0.82c-0.277-0.012-0.593-0.011-0.909-0.011c-0.316,0-0.83,0.119-1.265,0.594c-0.435,0.475-1.661,1.622-1.661,3.956c0,2.334,1.7,4.59,1.937,4.906c0.237,0.316,3.282,5.259,8.104,7.161c4.007,1.58,4.823,1.266,5.693,1.187c0.87-0.079,2.807-1.147,3.202-2.255c0.395-1.108,0.395-2.057,0.277-2.255c-0.119-0.198-0.435-0.316-0.909-0.554s-2.807-1.385-3.242-1.543c-0.435-0.158-0.751-0.237-1.068,0.238c-0.316,0.474-1.225,1.543-1.502,1.859c-0.277,0.317-0.554,0.357-1.028,0.119c-0.474-0.238-2.002-0.738-3.815-2.354c-1.41-1.257-2.362-2.81-2.639-3.285c-0.277-0.474-0.03-0.731,0.208-0.968c0.213-0.213,0.474-0.554,0.712-0.831c0.237-0.277,0.316-0.475,0.474-0.791c0.158-0.317,0.079-0.594-0.04-0.831C20.612,19.329,19.69,16.983,19.268,16.045z" clip-rule="evenodd"/>
</svg>
</a>
</div>
<div class="divider hidden-xs hidden-sm all-materials pull-left" ng-class="{active:headerCtrl.showSubMenu}" ng-mouseover="headerCtrl.showSubMenu=true">
<span class="search-all-outer">
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" enable-background="new 0 0 512 512" height="17" viewBox="0 0 512 512" width="17">
<path d="m464.883 64.267h-417.766c-25.98 0-47.117 21.136-47.117 47.149 0 25.98 21.137 47.117 47.117 47.117h417.766c25.98 0 47.117-21.137 47.117-47.117 0-26.013-21.137-47.149-47.117-47.149z"/>
<path d="m464.883 208.867h-417.766c-25.98 0-47.117 21.136-47.117 47.149 0 25.98 21.137 47.117 47.117 47.117h417.766c25.98 0 47.117-21.137 47.117-47.117 0-26.013-21.137-47.149-47.117-47.149z"/>
<path d="m464.883 353.467h-417.766c-25.98 0-47.117 21.137-47.117 47.149 0 25.98 21.137 47.117 47.117 47.117h417.766c25.98 0 47.117-21.137 47.117-47.117 0-26.012-21.137-47.149-47.117-47.149z"/>
</svg>
</span>
<span class="text-service hidden-xs hidden-sm">Home services</span>
</div>
<a class="shop-menu" href="UID_Proj_Pet_Food_2.html">
<svg class="svg-shop" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" viewBox="0 0 497.945 497.945" style="enable-background:new 0 0 497.945 497.945;" xml:space="preserve">
<polygon style="fill:#FFCA19;" points="431.543,335.281 482.743,96.836 90.697,96.836 147.749,335.281 "/>
<polygon style="fill:#E9AE21;" points="482.743,96.836 90.697,96.836 99.474,134.87 471.04,134.87 "/>
<path d="M431.543,351.373H147.749c-7.314,0-13.166-4.389-14.629-11.703L76.069,99.761c-1.463-4.389,0-8.777,2.926-11.703 c2.926-2.926,7.314-5.851,11.703-5.851h392.046c4.389,0,8.777,1.463,11.703,5.851c2.926,2.926,4.389,8.777,2.926,13.166 l-51.2,236.983C444.709,345.521,438.857,351.373,431.543,351.373z M159.451,320.653H419.84l43.886-209.189H109.714L159.451,320.653z "/>
<path d="M90.697,111.464c-7.314,0-13.166-4.389-14.629-11.703L64.366,57.338H14.629C5.851,57.338,0,50.024,0,42.71 s7.314-14.629,14.629-14.629h61.44c7.314,0,13.166,4.389,14.629,11.703l14.629,54.126c1.463,7.314-2.926,14.629-10.24,17.554 C93.623,111.464,92.16,111.464,90.697,111.464z"/>
<path d="M416.914,425.978H99.474c-29.257,0-52.663-23.406-52.663-52.663s23.406-52.663,52.663-52.663h317.44 c8.777,0,14.629,7.314,14.629,14.629c0,7.314-7.314,14.629-14.629,14.629H99.474c-13.166,0-23.406,10.24-23.406,23.406 s10.24,23.406,23.406,23.406h317.44c8.777,0,14.629,7.314,14.629,14.629C433.006,420.127,425.691,425.978,416.914,425.978z"/>
<circle style="fill:#C0D0D6;" cx="383.269" cy="412.813" r="42.423"/>
<circle style="fill:#849DA9;" cx="383.269" cy="412.813" r="14.629"/>
<path d="M383.269,469.864c-32.183,0-58.514-26.331-58.514-58.514s26.331-58.514,58.514-58.514s58.514,26.331,58.514,58.514 S415.451,469.864,383.269,469.864z M383.269,385.018c-16.091,0-27.794,13.166-27.794,27.794c0,16.091,13.166,27.794,27.794,27.794 s27.794-13.166,27.794-27.794C411.063,396.721,397.897,385.018,383.269,385.018z"/>
<circle style="fill:#C0D0D6;" cx="150.674" cy="412.813" r="42.423"/>
<circle style="fill:#849DA9;" cx="150.674" cy="412.813" r="14.629"/>
<path d="M150.674,469.864c-32.183,0-58.514-26.331-58.514-58.514s26.331-58.514,58.514-58.514s58.514,26.331,58.514,58.514 S182.857,469.864,150.674,469.864z M150.674,385.018c-16.091,0-27.794,13.166-27.794,27.794c0,16.091,13.166,27.794,27.794,27.794 s27.794-13.166,27.794-27.794C178.469,396.721,166.766,385.018,150.674,385.018z"/>
<path d="M219.429,266.527c-8.777,0-14.629-7.314-14.629-14.629V165.59c0-8.777,7.314-14.629,14.629-14.629 c8.777,0,14.629,7.314,14.629,14.629v86.309C234.057,260.676,228.206,266.527,219.429,266.527z"/>
<path d="M286.72,266.527c-8.777,0-14.629-7.314-14.629-14.629V165.59c0-8.777,7.314-14.629,14.629-14.629 c8.777,0,14.629,7.314,14.629,14.629v86.309C301.349,260.676,295.497,266.527,286.72,266.527z"/>
<path d="M354.011,266.527c-8.777,0-14.629-7.314-14.629-14.629V165.59c0-8.777,7.314-14.629,14.629-14.629 c8.777,0,14.629,7.314,14.629,14.629v86.309C368.64,260.676,362.789,266.527,354.011,266.527z"/>
<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>
<span>Shop</span>
</a>
<a id="phone_tab" href="tel:1800-123-0025" target="_blank" class="col-md-10 col-lg-9 col-sm-12 de-phone">
<div class="phone-outer">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="19" viewBox="0 0 48 39">
<g fill="none" transform="translate(0 -1)">
<path fill="#6971E0" d="M26.7,35.45 C21.4600897,39.8556357 14.0015765,40.4500676 8.13,36.93 L0.68,39.4 C0.16,39.58 -0.12,39.3 0.05,38.77 L2.54,31.32 C-0.338684766,26.4802194 -0.48134093,20.4885968 2.16374921,15.5172991 C4.80883936,10.5460014 9.85771984,7.31665211 15.48,7 C12.1023142,12.0760246 11.4222074,18.4836122 13.6590928,24.1555722 C15.8959783,29.8275322 20.766743,34.0459887 26.7,35.45 Z"></path>
<path fill="#87BBFD" d="M44.95,25.35 C49.1072162,18.3681813 47.41409,9.38326398 41.0009076,4.39334106 C34.5877253,-0.596581864 25.4622882,-0.0292946341 19.7164968,5.7164968 C13.9707054,11.4622882 13.4034181,20.5877253 18.3933411,27.0009076 C23.383264,33.41409 32.3681813,35.1072162 39.35,30.95 L46.81,33.44 C47.33,33.61 47.61,33.33 47.44,32.81 L44.95,25.35 Z"></path>
<path fill="#6971E0" d="M24.79,19.58 C24.1504946,19.58 23.5595672,19.238828 23.2398145,18.685 C22.9200617,18.1311721 22.9200617,17.4488279 23.2398145,16.895 C23.5595672,16.341172 24.1504946,16 24.79,16 C25.7785897,16 26.5799999,16.8014103 26.5799999,17.79 C26.5799999,18.7785897 25.7785897,19.58 24.79,19.58 Z M30.79,19.58 C30.1504946,19.58 29.5595672,19.238828 29.2398145,18.685 C28.9200617,18.1311721 28.9200617,17.4488279 29.2398145,16.895 C29.5595672,16.341172 30.1504946,16 30.79,16 C31.7785897,16 32.5799999,16.8014103 32.5799999,17.79 C32.5799999,18.7785897 31.7785897,19.58 30.79,19.58 Z M36.79,19.58 C36.1504946,19.58 35.5595672,19.238828 35.2398145,18.685 C34.9200617,18.1311721 34.9200617,17.4488279 35.2398145,16.895 C35.5595672,16.341172 36.1504946,16 36.79,16 C37.7785897,16 38.5799999,16.8014103 38.5799999,17.79 C38.5799999,18.7785897 37.7785897,19.58 36.79,19.58 Z"></path>
</g>
</svg>
</div>
<div class="phone-number hidden-xs"></div>
</a><a href="signin.html">
<div class="login-register-btns" class="col-md-10 col-lg-9 col-sm-12 de-phone de-profile" ng-cloak ng-show="headerCtrl.userNotLogedIn;">
<div class="login-signup-holder" ng-click="headerCtrl.rediectToLoginPage()">
<div>Login</div>
<!-- <div>Sign Up</div>-->
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header-section_login-signup-section_login-signup-icon-v1.png" alt="Login Icon">
</div>
</div></a>
<a class="col-md-10 col-lg-9 col-sm-12 de-phone de-user logged-in-user" ng-cloak ng-show="headerCtrl.userLogedIn;" ng-mouseover="headerCtrl.showProfileDetailsList=true;headerCtrl.showSubMenu=false;">
<div class="profile-holder">
<div ng-show="true" id="profileImage" ng-click="headerCtrl.showNavbar=!headerCtrl.showNavbar"></div>
<!-- <div ng-show="!headerCtrl.customerProfileImage" id="profileImage" ng-click="headerCtrl.showNavbar=!headerCtrl.showNavbar"></div>-->
<!-- <img ng-show="headerCtrl.customerProfileImage" class="profile-image" ng-src="{{headerCtrl.customerProfileImage}}" ng-click="headerCtrl.showNavbar=!headerCtrl.showNavbar">-->
<div class="user-name display-dekstop" id="firstName" ng-bind="headerCtrl.firstName"></div>
<svg class="display-dekstop" width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.9999 1.16994C10.8126 0.983692 10.5591 0.87915 10.2949 0.87915C10.0308 0.87915 9.77731 0.983692 9.58995 1.16994L5.99995 4.70994L2.45995 1.16994C2.27259 0.983692 2.01913 0.87915 1.75495 0.87915C1.49076 0.87915 1.23731 0.983692 1.04995 1.16994C0.95622 1.26291 0.881826 1.37351 0.831057 1.49537C0.780288 1.61723 0.75415 1.74793 0.75415 1.87994C0.75415 2.01195 0.780288 2.14266 0.831057 2.26452C0.881826 2.38638 0.95622 2.49698 1.04995 2.58994L5.28995 6.82994C5.38291 6.92367 5.49351 6.99806 5.61537 7.04883C5.73723 7.0996 5.86794 7.12574 5.99995 7.12574C6.13196 7.12574 6.26267 7.0996 6.38453 7.04883C6.50638 6.99806 6.61699 6.92367 6.70995 6.82994L10.9999 2.58994C11.0937 2.49698 11.1681 2.38638 11.2188 2.26452C11.2696 2.14266 11.2957 2.01195 11.2957 1.87994C11.2957 1.74793 11.2696 1.61723 11.2188 1.49537C11.1681 1.37351 11.0937 1.26291 10.9999 1.16994Z" fill="#1A202E"/>
</svg>
</div>
<div class="profile-sub-menu">
<ul class="list-holder">
<li ng-click="headerCtrl.gotoProfilePage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_myprofile-icon.svg" alt="Profile Icon">My Profile
</li>
<li ng-click="headerCtrl.gotoPetsPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_mypets-icon.svg" alt="Pets Icon">My Pets
</li>
<li ng-click="headerCtrl.gotoAddressPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_myorders-icon.svg" alt="Address Icon">My Address
</li>
<li ng-click="headerCtrl.gotoOrdersPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_myaddress-icon.svg" alt="Order Icon">My Orders
</li>
<li class="hide-element" ng-click="headerCtrl.gotoCouponsPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_coupons-icon.svg" alt="Coupons Icon">Coupons
</li>
<li class="hide-element" ng-click="headerCtrl.gotoReferPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_refer-and-earn-icon.svg" alt="Gifts Icon">Refer & Earn
</li>
<li ng-click="headerCtrl.gotoLogoutPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_logout-icon.svg" alt="Log Out Icon">Log Out
</li>
</ul>
</div>
</a>
<a ng-cloak id="burger_menu_tab" href="tel:1800-123-0025" target="_blank" class="col-md-10 col-lg-9 col-sm-12 de-phone hidden-md hidden-sm hidden-lg">
<div class="phone-outer">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 401.998 401.998" style="enable-background:new 0 0 401.998 401.998;" xml:space="preserve">
<g>
<g>
<path d="M401.129,311.475c-1.137-3.426-8.371-8.473-21.697-15.129c-3.61-2.098-8.754-4.949-15.41-8.566 c-6.662-3.617-12.709-6.95-18.13-9.996c-5.432-3.045-10.521-5.995-15.276-8.846c-0.76-0.571-3.139-2.234-7.136-5 c-4.001-2.758-7.375-4.805-10.14-6.14c-2.759-1.327-5.473-1.995-8.138-1.995c-3.806,0-8.56,2.714-14.268,8.135 c-5.708,5.428-10.944,11.324-15.7,17.706c-4.757,6.379-9.802,12.275-15.126,17.7c-5.332,5.427-9.713,8.138-13.135,8.138 c-1.718,0-3.86-0.479-6.427-1.424c-2.566-0.951-4.518-1.766-5.858-2.423c-1.328-0.671-3.607-1.999-6.845-4.004 c-3.244-1.999-5.048-3.094-5.428-3.285c-26.075-14.469-48.438-31.029-67.093-49.676c-18.649-18.658-35.211-41.019-49.676-67.097 c-0.19-0.381-1.287-2.19-3.284-5.424c-2-3.237-3.333-5.518-3.999-6.854c-0.666-1.331-1.475-3.283-2.425-5.852 s-1.427-4.709-1.427-6.424c0-3.424,2.713-7.804,8.138-13.134c5.424-5.327,11.326-10.373,17.7-15.128 c6.379-4.755,12.275-9.991,17.701-15.699c5.424-5.711,8.136-10.467,8.136-14.273c0-2.663-0.666-5.378-1.997-8.137 c-1.332-2.765-3.378-6.139-6.139-10.138c-2.762-3.997-4.427-6.374-4.999-7.139c-2.852-4.755-5.799-9.846-8.848-15.271 c-3.049-5.424-6.377-11.47-9.995-18.131c-3.615-6.658-6.468-11.799-8.564-15.415C98.986,9.233,93.943,1.997,90.516,0.859 C89.183,0.288,87.183,0,84.521,0c-5.142,0-11.85,0.95-20.129,2.856c-8.282,1.903-14.799,3.899-19.558,5.996 c-9.517,3.995-19.604,15.605-30.264,34.826C4.863,61.566,0.01,79.271,0.01,96.78c0,5.135,0.333,10.131,0.999,14.989 c0.666,4.853,1.856,10.326,3.571,16.418c1.712,6.09,3.093,10.614,4.137,13.56c1.045,2.948,2.996,8.229,5.852,15.845 c2.852,7.614,4.567,12.275,5.138,13.988c6.661,18.654,14.56,35.307,23.695,49.964c15.03,24.362,35.541,49.539,61.521,75.521 c25.981,25.98,51.153,46.49,75.517,61.526c14.655,9.134,31.314,17.032,49.965,23.698c1.714,0.568,6.375,2.279,13.986,5.141 c7.614,2.854,12.897,4.805,15.845,5.852c2.949,1.048,7.474,2.43,13.559,4.145c6.098,1.715,11.566,2.905,16.419,3.576 c4.856,0.657,9.853,0.996,14.989,0.996c17.508,0,35.214-4.856,53.105-14.562c19.219-10.656,30.826-20.745,34.823-30.269 c2.102-4.754,4.093-11.273,5.996-19.555c1.909-8.278,2.857-14.985,2.857-20.126C401.99,314.814,401.703,312.819,401.129,311.475z" data-original="#000000" class="active-path" data-old_color="#000000" fill="#FF7817"/>
</g>
</g>
</svg>
</div>
<div class="line-hr"></div>
</a>
<div class="menu-whatsapp-container burger-menu hidden-md hidden-lg">
<div class="divider all-materials pull-left" ng-class="{active:headerCtrl.showSubMenu}" ng-click="headerCtrl.showSubMenu=!headerCtrl.showSubMenu;headerCtrl.showNavbar=false;">
<span class="search-all-outer">
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" enable-background="new 0 0 512 512" height="17" viewBox="0 0 512 512" width="17">
<path d="m464.883 64.267h-417.766c-25.98 0-47.117 21.136-47.117 47.149 0 25.98 21.137 47.117 47.117 47.117h417.766c25.98 0 47.117-21.137 47.117-47.117 0-26.013-21.137-47.149-47.117-47.149z"/>
<path d="m464.883 208.867h-417.766c-25.98 0-47.117 21.136-47.117 47.149 0 25.98 21.137 47.117 47.117 47.117h417.766c25.98 0 47.117-21.137 47.117-47.117 0-26.013-21.137-47.149-47.117-47.149z"/>
<path d="m464.883 353.467h-417.766c-25.98 0-47.117 21.137-47.117 47.149 0 25.98 21.137 47.117 47.117 47.117h417.766c25.98 0 47.117-21.137 47.117-47.117 0-26.012-21.137-47.149-47.117-47.149z"/>
</svg>
</span>
</div>
</div>
<div class="drop-overlay" ng-click="headerCtrl.showFlagMenu=false" ng-if="headerCtrl.showFlagMenu"></div>
</div>
<div class="submenu-backlay" ng-show="headerCtrl.showNavbar" ng-click="headerCtrl.showNavbar=false">
<div id="mobile-view-sub-menu" class="profile-sub-menu profile-sub-menu-for-mobile" ng-cloak ng-show="headerCtrl.showNavbar">
<ul class="list-holder">
<li ng-click="headerCtrl.gotoProfilePage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_myprofile-icon.svg" alt="Profile Icon">My Profile
</li>
<li ng-click="headerCtrl.gotoPetsPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_mypets-icon.svg" alt="Pets Icon">My Pets
</li>
<li ng-click="headerCtrl.gotoAddressPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_myorders-icon.svg" alt="Address Icon">My Address
</li>
<li ng-click="headerCtrl.gotoOrdersPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_myaddress-icon.svg" alt="Orders Icon">My Orders
</li>
<li class="hide-element" ng-click="headerCtrl.gotoCouponsPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_coupons-icon.svg" alt="Coupons Icon">Coupons
</li>
<li class="hide-element" ng-click="headerCtrl.gotoReferPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_refer-and-earn-icon.svg" alt="Gifts Icon">Refer & Earn
</li>
<li ng-click="headerCtrl.gotoLogoutPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_logout-icon.svg" alt="Log Out Icon">Log Out
</li>
</ul>
</div>
</div>
</header>
<div class="home-v2" ng-controller="AdoptPetCtrl as hcV1Ctrl">
<section class="funnel-section smart_bg_image adopt-funnel-section">
<div class="banner-content">
<h1 class="banner-heading">Re-Home and Adopt a Pet in India</h1>
<div class="banner-description">Every Pet Deserves a Good Home. #Adoptlove</div>
<div class="service-details-flex" ng-cloak>
<!-- <div class="service-details-item">-->
<!-- <label>I'm looking for a...</label>-->
<!-- <div class="input-group-service pet-types">-->
<!-- <input ng-click="hcV1Ctrl.showPetTypeListCH();" readonly ng-model="hcV1Ctrl.petType" placeholder="Select pet type here..." />-->
<!-- <div class="dd-list-container" ng-show="hcV1Ctrl.showPetTypeListView">-->
<!-- <div class="dd-list-item" ng-click="hcV1Ctrl.petType = petType;hcV1Ctrl.showPetTypeListView = false;" ng-repeat="petType in hcV1Ctrl.petTypes">-->
<!-- {{petType}}-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="service-svg">-->
<!-- <svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 491.996 491.996" style="enable-background:new 0 0 491.996 491.996;" xml:space="preserve"> <g> <g> <path d="M484.132,124.986l-16.116-16.228c-5.072-5.068-11.82-7.86-19.032-7.86c-7.208,0-13.964,2.792-19.036,7.86l-183.84,183.848 L62.056,108.554c-5.064-5.068-11.82-7.856-19.028-7.856s-13.968,2.788-19.036,7.856l-16.12,16.128 c-10.496,10.488-10.496,27.572,0,38.06l219.136,219.924c5.064,5.064,11.812,8.632,19.084,8.632h0.084 c7.212,0,13.96-3.572,19.024-8.632l218.932-219.328c5.072-5.064,7.856-12.016,7.864-19.224 C491.996,136.902,489.204,130.046,484.132,124.986z"/> </g> </g> </svg>-->
<!-- </div>-->
<!-- <div class="overlay" ng-show="hcV1Ctrl.showPetTypeListView" ng-click="hcV1Ctrl.hidePetTypeListItemCH();"></div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="service-details-item state">-->
<!-- <label>Select State...</label>-->
<!-- <div class="input-group-service autosuggest-dd-container state">-->
<!-- <input ng-click="hcV1Ctrl.showStateListClickHandler();"-->
<!-- maxlength="100"-->
<!-- class="cursor-p"-->
<!-- ng-class="{'invalid-field': hcV1Ctrl.personalDetailsError && !hcV1Ctrl.stateId}"-->
<!-- readonly ng-show="!hcV1Ctrl.showStateListView" ng-model="hcV1Ctrl.stateName" placeholder="Select state here..." />-->
<!-- <input id="state-search-input" ng-click="hcV1Ctrl.showStateListClickHandler();"-->
<!-- maxlength="100"-->
<!-- ng-class="{'invalid-field': hcV1Ctrl.personalDetailsError && !hcV1Ctrl.stateId}"-->
<!-- autocomplete="off" ng-show="hcV1Ctrl.showStateListView" ng-model="hcV1Ctrl.stateNameFilter" placeholder="Search state here..." ng-cloak />-->
<!-- <div class="dd-list-container" ng-show="hcV1Ctrl.showStateListView" ng-cloak>-->
<!-- <div class="dd-list-item" ng-click="hcV1Ctrl.showStateItemClickHandler(state);" ng-repeat="state in hcV1Ctrl.filteredState = (hcV1Ctrl.stateMasterData | filter: hcV1Ctrl.stateNameFilter) | orderBy : 'name' ">-->
<!-- {{state.name}}-->
<!-- </div>-->
<!-- <div class="dd-list-no-result" ng-if="!hcV1Ctrl.filteredState.length" ng-cloak>-->
<!-- No state found...-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="service-svg">-->
<!-- <svg height="20" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 491.996 491.996" style="enable-background:new 0 0 491.996 491.996;" xml:space="preserve"> <g> <g> <path d="M484.132,124.986l-16.116-16.228c-5.072-5.068-11.82-7.86-19.032-7.86c-7.208,0-13.964,2.792-19.036,7.86l-183.84,183.848 L62.056,108.554c-5.064-5.068-11.82-7.856-19.028-7.856s-13.968,2.788-19.036,7.856l-16.12,16.128 c-10.496,10.488-10.496,27.572,0,38.06l219.136,219.924c5.064,5.064,11.812,8.632,19.084,8.632h0.084 c7.212,0,13.96-3.572,19.024-8.632l218.932-219.328c5.072-5.064,7.856-12.016,7.864-19.224 C491.996,136.902,489.204,130.046,484.132,124.986z"/> </g> </g> </svg>-->
<!-- </div>-->
<!-- <div ng-cloak class="backlay" ng-show="hcV1Ctrl.showStateListView" ng-click="hcV1Ctrl.hideStateItemClickHandler();"></div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="service-details-item city">-->
<!-- <label>Select City...</label>-->
<!-- <div class="input-group-service autosuggest-dd-container city">-->
<!-- <input ng-click="hcV1Ctrl.showCityListClickHandler();"-->
<!-- maxlength="100"-->
<!-- ng-class="{'invalid-field': hcV1Ctrl.personalDetailsError && !hcV1Ctrl.cityId}"-->
<!-- readonly ng-show="!hcV1Ctrl.showCityListView" ng-model="hcV1Ctrl.cityName" placeholder="Select city here..." />-->
<!-- <input id="city-search-input" ng-click="hcV1Ctrl.showCityListClickHandler();"-->
<!-- maxlength="100"-->
<!-- ng-class="{'invalid-field': hcV1Ctrl.personalDetailsError && !hcV1Ctrl.cityId}"-->
<!-- autocomplete="off" ng-show="hcV1Ctrl.showCityListView" ng-model="hcV1Ctrl.cityNameFilter" placeholder="Search city here..." ng-cloak />-->
<!-- <div class="dd-list-container" ng-show="hcV1Ctrl.showCityListView" ng-cloak>-->
<!-- <div class="dd-list-item" ng-click="hcV1Ctrl.showCityItemClickHandler(city);" ng-repeat="city in hcV1Ctrl.filteredCities = (hcV1Ctrl.cityStateMasterData[hcV1Ctrl.stateSlug].cities || hcV1Ctrl.cityStateMasterData['delhi'].cities | filter: hcV1Ctrl.cityNameFilter) | orderBy : 'name' ">-->
<!-- {{city.name}}-->
<!-- </div>-->
<!-- <div class="dd-list-no-result" ng-if="!hcV1Ctrl.filteredCities.length" ng-cloak>-->
<!-- No city found...-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="service-svg">-->
<!-- <svg height="20" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 491.996 491.996" style="enable-background:new 0 0 491.996 491.996;" xml:space="preserve"> <g> <g> <path d="M484.132,124.986l-16.116-16.228c-5.072-5.068-11.82-7.86-19.032-7.86c-7.208,0-13.964,2.792-19.036,7.86l-183.84,183.848 L62.056,108.554c-5.064-5.068-11.82-7.856-19.028-7.856s-13.968,2.788-19.036,7.856l-16.12,16.128 c-10.496,10.488-10.496,27.572,0,38.06l219.136,219.924c5.064,5.064,11.812,8.632,19.084,8.632h0.084 c7.212,0,13.96-3.572,19.024-8.632l218.932-219.328c5.072-5.064,7.856-12.016,7.864-19.224 C491.996,136.902,489.204,130.046,484.132,124.986z"/> </g> </g> </svg>-->
<!-- </div>-->
<!-- <div ng-cloak class="backlay" ng-show="hcV1Ctrl.showCityListView" ng-click="hcV1Ctrl.hideCityItemClickHandler();"></div>-->
<!-- </div>-->
<!-- </div>-->
<div class="cta-container banner-cta-container">
<a ng-init="hcV1Ctrl.adoptDogPageUrl = '/adopt-a-dog'" ng-show="!hcV1Ctrl.petType || hcV1Ctrl.petType === 'Dog'" href="/adopt-a-dog" target="_top" class="tpn-btn tpn-btn-primary btn-block hidden">Adopt a dog</a>
<a ng-init="hcV1Ctrl.adoptCatPageUrl = '/adopt-a-cat'" ng-show="hcV1Ctrl.petType === 'Cat'" href="/adopt-a-cat" target="_top" class="tpn-btn tpn-btn-primary btn-block hidden">Adopt a cat</a>
<a href="adopt2.html" class="tpn-btn tpn-btn-primary btn-block">Adopt a pet</a>
</div>
</div>
</div>
</section>
<section class="container services-for-every-dog">
<div class="row">
<div class="col-xs-12">
<h2 class="adopt-pet-heading">Your Pet Adoption Journey With PawStop</h2>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 sitters-column">
<img data-src="//dm6g3jbka53hp.cloudfront.net/static-images/adopt-me-pet-02032021.jpg" class="smart_image adopt-me-img">
</div>
<div class="col-xs-12 col-sm-6">
<div class="service-row">
<div class="svg-container">
<svg xmlns="http://www.w3.org/2000/svg" width="70" height="70" viewBox="0 0 512.00045 512">
<path d="m449.949219 380.882812c-45.234375-45.238281-97.363281-66.453124-116.429688-47.386718-19.066406 19.066406 2.148438 71.195312 47.382813 116.429687 45.238281 45.238281 97.363281 66.453125 116.429687 47.386719 19.066407-19.066406-2.148437-71.195312-47.382812-116.429688zm0 0" fill="#edd464"/>
<path d="m497.34375 497.308594c-19.074219 19.066406-71.203125-2.148438-116.433594-47.378906-45.238281-45.238282-66.453125-97.367188-47.390625-116.429688-7.46875 7.46875 23.148438 50.191406 68.390625 95.433594 45.230469 45.230468 87.960938 75.847656 95.433594 68.375zm0 0" fill="#d8951e"/>
<path d="m413.511719 210.5625c0 112.070312-90.851563 202.917969-202.917969 202.917969-112.070312 0-202.917969-90.847657-202.917969-202.917969 0-112.066406 90.847657-202.917969 202.917969-202.917969 112.066406 0 202.917969 90.851563 202.917969 202.917969zm0 0" fill="#43b9dd"/>
<path d="m361.371094 210.5625c0 83.273438-67.507813 150.777344-150.777344 150.777344-83.273438 0-150.78125-67.503906-150.78125-150.777344 0-83.269531 67.507812-150.777344 150.78125-150.777344 83.269531 0 150.777344 67.507813 150.777344 150.777344zm0 0" fill="#eaeaea"/>
<path d="m317.207031 103.949219c-33.871093-33.875-79.851562-48.253907-124.011719-43.15625 32.601563 3.765625 64.210938 18.144531 89.222657 43.15625 58.878906 58.878906 58.878906 154.347656 0 213.230469-25.011719 25.007812-56.621094 39.386718-89.222657 43.152343 44.160157 5.101563 90.140626-9.28125 124.011719-43.152343 58.882813-58.882813 58.882813-154.347657 0-213.230469zm0 0" fill="#fff"/>
<g fill="#b75129">
<path d="m260.351562 245.761719c0 27.480469-22.277343 49.761719-49.757812 49.761719s-49.757812-22.28125-49.757812-49.761719 22.277343-49.757813 49.757812-49.757813 49.757812 22.277344 49.757812 49.757813zm0 0"/>
<path d="m197.0625 146.304688c0 11.425781-9.265625 20.691406-20.691406 20.691406-11.429688 0-20.691406-9.265625-20.691406-20.691406 0-11.429688 9.261718-20.691407 20.691406-20.691407 11.425781 0 20.691406 9.261719 20.691406 20.691407zm0 0"/>
<path d="m143.464844 189.621094c0 11.425781-9.261719 20.691406-20.691406 20.691406-11.425782 0-20.691407-9.265625-20.691407-20.691406 0-11.429688 9.265625-20.691406 20.691407-20.691406 11.429687 0 20.691406 9.261718 20.691406 20.691406zm0 0"/>
<path d="m319.101562 191.242188c0 11.425781-9.265624 20.691406-20.691406 20.691406-11.429687 0-20.691406-9.265625-20.691406-20.691406 0-11.429688 9.261719-20.691407 20.691406-20.691407 11.425782 0 20.691406 9.261719 20.691406 20.691407zm0 0"/>
<path d="m266.289062 146.941406c0 11.425782-9.265624 20.691406-20.691406 20.691406-11.425781 0-20.691406-9.265624-20.691406-20.691406 0-11.425781 9.265625-20.691406 20.691406-20.691406 11.425782 0 20.691406 9.265625 20.691406 20.691406zm0 0"/>
</g>
<path d="m98.550781 98.519531c-61.78125 61.78125-61.78125 162.304688 0 224.085938 30.890625 30.890625 71.464844 46.335937 112.042969 46.335937 40.574219 0 81.152344-15.445312 112.042969-46.335937 61.777343-61.78125 61.777343-162.304688 0-224.085938-61.78125-61.777343-162.308594-61.777343-224.085938 0zm213.230469 10.855469c55.796875 55.796875 55.796875 146.582031 0 202.378906s-146.582031 55.796875-202.378906 0c-55.792969-55.796875-55.792969-146.582031 0-202.378906 27.898437-27.898438 64.542968-41.847656 101.191406-41.847656 36.644531 0 73.289062 13.949218 101.1875 41.847656zm0 0"/>
<path d="m153.160156 245.761719c0 31.667969 25.761719 57.433593 57.429688 57.433593 31.667968 0 57.433594-25.765624 57.433594-57.433593s-25.765626-57.429688-57.433594-57.429688c-31.667969 0-57.429688 25.761719-57.429688 57.429688zm57.433594-42.082031c23.203125 0 42.082031 18.878906 42.082031 42.082031s-18.878906 42.085937-42.082031 42.085937c-23.207031 0-42.085938-18.882812-42.085938-42.085937s18.878907-42.082031 42.085938-42.082031zm0 0"/>
<path d="m163.863281 171.761719c3.953125 1.941406 8.203125 2.921875 12.480469 2.921875 3.085938 0 6.183594-.507813 9.1875-1.535156 7.171875-2.445313 12.960938-7.539063 16.300781-14.339844 3.339844-6.800782 3.832031-14.496094 1.382813-21.667969-2.445313-7.167969-7.539063-12.957031-14.339844-16.296875-6.800781-3.34375-14.496094-3.835938-21.664062-1.386719-14.804688 5.050781-22.738282 21.203125-17.6875 36.007813 2.445312 7.167968 7.539062 12.957031 14.339843 16.296875zm8.304688-37.777344c1.375-.46875 2.796875-.703125 4.210937-.703125 1.964844 0 3.917969.449219 5.730469 1.339844 3.121094 1.53125 5.457031 4.1875 6.578125 7.480468 1.125 3.289063.898438 6.820313-.632812 9.941407-1.535157 3.121093-4.191407 5.457031-7.480469 6.578125-3.292969 1.125-6.824219.898437-9.945313-.632813-3.117187-1.535156-5.457031-4.191406-6.578125-7.480469-2.316406-6.792968 1.324219-14.207031 8.117188-16.523437zm0 0"/>
<path d="m98.976562 174.183594c-4.125 6.355468-5.523437 13.9375-3.945312 21.347656s5.949219 13.761719 12.304688 17.886719c4.757812 3.085937 10.105468 4.558593 15.394531 4.558593 9.296875 0 18.414062-4.554687 23.839843-12.917968 4.125-6.355469 5.527344-13.9375 3.945313-21.347656-1.578125-7.410157-5.949219-13.765626-12.304687-17.886719-6.355469-4.125-13.9375-5.527344-21.347657-3.949219-7.410156 1.582031-13.761719 5.953125-17.886719 12.308594zm12.878907 8.351562c1.890625-2.917968 4.804687-4.921875 8.207031-5.644531.910156-.195313 1.828125-.292969 2.738281-.292969 2.488281 0 4.921875.71875 7.058594 2.101563 2.914063 1.894531 4.921875 4.808593 5.644531 8.207031.726563 3.402344.082032 6.882812-1.808594 9.796875-1.894531 2.917969-4.808593 4.921875-8.210937 5.648437-3.398437.722657-6.878906.082032-9.796875-1.8125-2.914062-1.890624-4.921875-4.804687-5.644531-8.207031-.722657-3.398437-.082031-6.878906 1.8125-9.796875zm0 0"/>
<path d="m274.289062 206.167969c3.988282 6.445312 10.246094 10.949219 17.621094 12.683593 2.175782.511719 4.371094.765626 6.550782.765626 5.210937 0 10.335937-1.445313 14.878906-4.257813 6.441406-3.984375 10.945312-10.242187 12.679687-17.617187 1.738281-7.375.496094-14.988282-3.488281-21.429688-3.988281-6.441406-10.246094-10.945312-17.621094-12.683594-7.375-1.734375-14.984375-.496094-21.429687 3.492188-6.441407 3.988281-10.945313 10.246094-12.683594 17.621094-1.734375 7.375-.496094 14.984374 3.492187 21.425781zm11.449219-17.910157c.796875-3.382812 2.863281-6.253906 5.820313-8.085937 2.085937-1.289063 4.4375-1.953125 6.828125-1.953125 1 0 2.007812.117188 3.003906.351562 3.386719.796876 6.257813 2.863282 8.085937 5.820313 1.832032 2.957031 2.398438 6.449219 1.601563 9.832031-.796875 3.386719-2.863281 6.253906-5.820313 8.085938-6.101562 3.777344-14.140624 1.882812-17.917968-4.21875-1.828125-2.953125-2.394532-6.445313-1.601563-9.832032zm0 0"/>
<path d="m235.867188 173.585938c3.175781 1.160156 6.464843 1.738281 9.746093 1.738281 4.078125 0 8.140625-.890625 11.945313-2.660157 6.871094-3.199218 12.085937-8.875 14.683594-15.992187 2.597656-7.117187 2.269531-14.820313-.925782-21.691406-3.195312-6.871094-8.875-12.085938-15.992187-14.683594-14.691407-5.367187-31.007813 2.222656-36.375 16.917969-2.597657 7.117187-2.269531 14.820312.925781 21.6875 3.199219 6.871094 8.875 12.085937 15.992188 14.683594zm-2.496094-31.109376c1.925781-5.273437 6.925781-8.550781 12.238281-8.550781 1.480469 0 2.984375.253907 4.453125.789063 3.265625 1.191406 5.871094 3.585937 7.335938 6.738281 1.46875 3.152344 1.617187 6.6875.425781 9.953125-2.460938 6.742188-9.949219 10.226562-16.691407 7.761719-6.742187-2.460938-10.226562-9.949219-7.761718-16.691407zm0 0"/>
<path d="m504.867188 446.015625c-9.324219-22.917969-26.898438-47.976563-49.480469-70.558594-22.058594-22.054687-46.683594-39.421875-68.996094-48.835937 22.632813-34.136719 34.792969-74.160156 34.792969-116.058594 0-56.25-21.90625-109.132812-61.679688-148.910156-5.746094-5.746094-11.863281-11.203125-18.183594-16.21875-3.324218-2.636719-8.148437-2.078125-10.785156 1.242187-2.632812 3.320313-2.078125 8.148438 1.242188 10.78125 5.863281 4.652344 11.539062 9.71875 16.875 15.050781 36.875 36.875 57.183594 85.90625 57.183594 138.054688 0 52.152344-20.308594 101.183594-57.183594 138.058594-36.878906 36.878906-85.910156 57.1875-138.058594 57.1875-52.152344 0-101.183594-20.308594-138.058594-57.1875-36.878906-36.875-57.1875-85.90625-57.1875-138.058594 0-52.148438 20.308594-101.179688 57.1875-138.054688 30.414063-30.417968 68.953125-49.566406 111.453125-55.375 41.136719-5.628906 83.753907 2.15625 120.003907 21.917969 3.722656 2.027344 8.382812.65625 10.410156-3.066406 2.03125-3.722656.660156-8.382813-3.0625-10.410156-39.105469-21.320313-85.070313-29.71875-129.433594-23.652344-45.847656 6.269531-87.421875 26.925781-120.226562 59.730469-39.773438 39.777344-61.679688 92.660156-61.679688 148.910156 0 56.253906 21.90625 109.136719 61.679688 148.914062 39.777343 39.773438 92.660156 61.679688 148.914062 61.679688 41.894531 0 81.921875-12.160156 116.058594-34.800781 9.417968 22.324219 26.777344 46.949219 48.828125 68.996093 22.585937 22.585938 47.648437 40.164063 70.5625 49.492188 11.699219 4.757812 22.328125 7.132812 31.511719 7.132812 10.46875 0 19.0625-3.085937 25.210937-9.238281 11.542969-11.546875 12.289063-31.691406 2.101563-56.722656zm-12.957032 45.871094c-6.796875 6.800781-21.40625 6.339843-40.078125-1.261719-21.066406-8.570312-44.328125-24.953125-65.5-46.125-21.832031-21.832031-38.644531-46.070312-46.851562-67.359375 6.980469-5.421875 13.671875-11.3125 20.023437-17.664063 6.351563-6.355468 12.246094-13.046874 17.671875-20.027343 21.277344 8.207031 45.515625 25.023437 67.355469 46.859375 45.066406 45.066406 61.140625 91.8125 47.378906 105.578125zm0 0"/>
</svg>
</div>
<div class="description">
<label class="title">Search Pet</label>
<div class="content text-muted">Adopt a dog or cat who's right for you. Simply enter your city above to start your search.</div>
<!-- <a class="page-link-btn" href="" target="_self">-->
<!-- Find out more about Pet Grooming-->
<!-- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 492.004 492.004" style="enable-background:new 0 0 492.004 492.004;" xml:space="preserve" width="10" height="10"><g><g> <g> <path d="M382.678,226.804L163.73,7.86C158.666,2.792,151.906,0,144.698,0s-13.968,2.792-19.032,7.86l-16.124,16.12 c-10.492,10.504-10.492,27.576,0,38.064L293.398,245.9l-184.06,184.06c-5.064,5.068-7.86,11.824-7.86,19.028 c0,7.212,2.796,13.968,7.86,19.04l16.124,16.116c5.068,5.068,11.824,7.86,19.032,7.86s13.968-2.792,19.032-7.86L382.678,265 c5.076-5.084,7.864-11.872,7.848-19.088C390.542,238.668,387.754,231.884,382.678,226.804z" data-original="#000000" class="active-path" data-old_color="#000000" fill="#3783E6"/> </g> </g></g> </svg>-->
<!-- </a>-->
</div>
</div>
<div class="service-row">
<div class="svg-container">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 256 256" style="enable-background:new 0 0 256 256;" xml:space="preserve" width="70" height="70">
<style type="text/css">
.st0 {
fill: #4EA3DA;
}
.st1 {
fill: #FFFFFF;
}
.st2 {
fill: #FFCC34;
}
.st3 {
fill: #122436;
}
</style>
<switch>
<foreignObject requiredExtensions="http://ns.adobe.com/AdobeIllustrator/10.0/" x="0" y="0" width="1" height="1">
<i:pgfRef xlink:href="#adobe_illustrator_pgf"></i:pgfRef>
</foreignObject>
<g i:extraneous="self">
<g>
<g>
<g>
<g>
<g>
<path class="st0" d="M128,222.408c-52.057,0-94.408-42.351-94.408-94.408S75.943,33.592,128,33.592 c25.217,0,48.925,9.82,66.756,27.651L184.15,71.85C169.151,56.852,149.21,48.592,128,48.592 c-43.786,0-79.408,35.622-79.408,79.408S84.214,207.408,128,207.408s79.408-35.622,79.408-79.408h15 C222.408,180.057,180.057,222.408,128,222.408z"/>
</g>
</g>
<g>
<g>
<path class="st1" d="M128,207.408c-42.612,0-77.479-33.741-79.319-75.908c-0.051,1.161-0.089,2.326-0.089,3.5 c0,43.786,35.622,79.408,79.408,79.408s79.408-35.622,79.408-79.408h14.74c0.17-2.312,0.26-4.645,0.26-7h-15 C207.408,171.786,171.786,207.408,128,207.408z"/>
</g>
<g>
<path class="st1" d="M128,40.592c23.56,0,45.801,8.574,63.165,24.243l3.591-3.591C176.925,43.412,153.217,33.592,128,33.592 c-52.057,0-94.408,42.351-94.408,94.408c0,1.172,0.029,2.338,0.072,3.5C35.512,81.059,77.116,40.592,128,40.592z"/>
</g>
</g>
<g>
<polygon class="st0" points="211.5,88.55 167.685,88.55 211.5,44.735 "/>
</g>
<g>
<polygon class="st1" points="167.685,88.55 177.685,88.55 211.5,54.735 211.5,44.735 "/>
</g>
</g>
<g>
<g>
<path class="st2" d="M112.429,137.072c4.273-4.835,7.204-8.809,8.957-12.15c1.865-3.554,2.81-6.948,2.81-10.088 c0-5.566-1.81-10.079-5.38-13.41c-3.501-3.269-8.294-4.926-14.245-4.926c-3.905,0-7.462,0.885-10.572,2.629 c-3.16,1.773-5.633,4.256-7.35,7.381c-1.685,3.065-2.539,6.492-2.539,10.185v3.5h11.516v-3.5c0-2.881,0.803-5.115,2.455-6.831 c1.616-1.678,3.739-2.494,6.49-2.494c2.654,0,4.615,0.666,5.994,2.037c1.373,1.365,2.041,3.265,2.041,5.808 c0,1.652-0.482,3.422-1.431,5.262c-1.081,2.095-3.121,4.877-6.042,8.246l-19.808,22.468v8.314h41.604V148.67H102.17 L112.429,137.072z"/>
</g>
<g>
<g>
<path class="st1" d="M86.648,112.509c1.717-3.125,4.19-5.608,7.35-7.381c3.11-1.745,6.667-2.629,10.572-2.629 c5.951,0,10.744,1.657,14.245,4.926c2.848,2.658,4.556,6.078,5.139,10.174c0.155-0.94,0.242-1.864,0.242-2.764 c0-5.566-1.81-10.079-5.38-13.41c-3.501-3.269-8.294-4.926-14.245-4.926c-3.905,0-7.462,0.885-10.572,2.629 c-3.16,1.773-5.633,4.256-7.35,7.381c-1.685,3.065-2.539,6.492-2.539,10.185v3.5h0.14 C84.551,117.447,85.35,114.87,86.648,112.509z"/>
</g>
<g>
<polygon class="st1" points="98.964,148.67 93.657,154.67 126.928,154.67 126.928,148.67 "/>
</g>
<g>
<path class="st1" d="M111.174,126.475c0.95-1.84,1.431-3.61,1.431-5.262c0-1.195-0.153-2.242-0.452-3.164 c-0.236,0.793-0.554,1.601-0.979,2.426c-1.081,2.095-3.121,4.877-6.042,8.246l-19.808,22.468v6l19.808-22.468 C108.053,131.352,110.092,128.571,111.174,126.475z"/>
</g>
</g>
<g>
<path class="st2" d="M163.277,134.707v-37.45h-10.353l-27.191,41.15v7.132h25.991v13.963h11.553v-13.963h8.613v-10.833 H163.277z M151.724,118.786v15.921h-10.435L151.724,118.786z"/>
</g>
<g>
<g>
<polygon class="st1" points="154.188,140.707 154.188,134.707 138.25,134.707 134.317,140.707 "/>
</g>
<g>
<polygon class="st1" points="163.277,103.257 163.277,97.257 152.924,97.257 125.733,138.407 125.733,144.407 152.924,103.257 "/>
</g>
<g>
<rect x="160.75" y="134.707" class="st1" width="11.141" height="6"/>
</g>
</g>
</g>
<g>
<path class="st3" d="M204.908,125.5v2.5c0,42.407-34.501,76.908-76.908,76.908S51.092,170.407,51.092,128 S85.593,51.092,128,51.092c19.762,0,38.387,7.404,52.708,20.899l-5.949,5.949c-0.063-0.059-0.126-0.118-0.189-0.177 l-3.402,3.664c0.018,0.017,0.036,0.034,0.053,0.05l-9.572,9.572H214V38.699l-19.146,19.146 c-18.1-17.271-41.748-26.753-66.854-26.753c-53.436,0-96.908,43.473-96.908,96.908S74.564,224.908,128,224.908 s96.908-43.473,96.908-96.908v-2.5H204.908z M209,86.05h-35.28L209,50.771V86.05z M128,219.908 c-50.679,0-91.908-41.229-91.908-91.908S77.321,36.092,128,36.092c23.715,0,46.058,8.92,63.197,25.175l-7.073,7.074 C168.875,53.975,149.042,46.092,128,46.092c-45.164,0-81.908,36.744-81.908,81.908S82.836,209.908,128,209.908 c44.329,0,80.546-35.394,81.87-79.408h10.005C218.547,180.028,177.843,219.908,128,219.908z"/>
<path class="st3" d="M174.391,132.207h-8.613v-37.45h-14.198l-28.347,42.899v8.515h-15.514l6.583-7.442v-0.001 c4.41-4.989,7.451-9.125,9.298-12.644c2.054-3.916,3.096-7.701,3.096-11.25c0-6.288-2.077-11.415-6.174-15.237 c-3.979-3.715-9.346-5.599-15.951-5.599c-4.338,0-8.307,0.992-11.796,2.949c-3.574,2.005-6.372,4.817-8.316,8.357 c-1.891,3.438-2.849,7.269-2.849,11.389v6h16.516v-6c0-2.233,0.558-3.853,1.756-5.097c1.135-1.179,2.625-1.728,4.689-1.728 c1.961,0,3.345,0.429,4.232,1.31c0.559,0.556,1.304,1.58,1.304,4.035c0,1.247-0.388,2.632-1.153,4.115 c-0.682,1.32-2.226,3.737-5.695,7.739l-20.433,23.176v11.758h46.604V148.04h19.797v13.963h16.553V148.04h8.613V132.207z M124.428,157.002H87.824v-4.869l19.196-21.775c3.057-3.525,5.201-6.464,6.375-8.737c1.135-2.199,1.71-4.355,1.71-6.409 c0-3.198-0.935-5.749-2.779-7.582c-1.871-1.859-4.408-2.763-7.756-2.763c-3.42,0-6.209,1.097-8.291,3.26 c-2.093,2.173-3.154,5.055-3.154,8.565v1h-6.516v-1c0-3.268,0.75-6.289,2.23-8.981c1.487-2.709,3.635-4.864,6.381-6.405 c2.732-1.532,5.878-2.31,9.35-2.31c5.298,0,9.517,1.431,12.539,4.254c3.043,2.839,4.586,6.736,4.586,11.582 c0,2.731-0.849,5.735-2.523,8.926c-1.657,3.159-4.476,6.972-8.616,11.656L96.621,151.17h27.807V157.002z M169.391,143.04 h-8.613v13.963h-6.553V143.04h-25.992v-3.881l26.036-39.402h6.509v37.45h8.613V143.04z"/>
<path class="st3" d="M154.225,137.207v-26.795l-17.563,26.795H154.225z M149.225,132.207h-3.308l3.308-5.046V132.207z"/>
<path class="st3" d="M141.491,195.165c1.688-0.339,3.384-0.747,5.039-1.212l-1.354-4.814c-1.534,0.432-3.105,0.81-4.669,1.124 L141.491,195.165z"/>
<path class="st3" d="M130.173,196.466c1.724-0.054,3.463-0.174,5.169-0.356l-0.531-4.972c-1.582,0.169-3.195,0.281-4.794,0.331 L130.173,196.466z"/>
<path class="st3" d="M112.678,194.771l1.119-4.873c-1.556-0.357-3.116-0.778-4.638-1.252l-1.486,4.774 C109.315,193.932,110.999,194.386,112.678,194.771z"/>
<path class="st3" d="M152.439,191.995c1.604-0.615,3.209-1.301,4.769-2.039l-2.139-4.52c-1.445,0.684-2.933,1.32-4.42,1.89 L152.439,191.995z"/>
<path class="st3" d="M101.826,191.303l1.916-4.618c-1.47-0.61-2.938-1.286-4.361-2.007l-2.26,4.46 C98.656,189.915,100.239,190.644,101.826,191.303z"/>
<path class="st3" d="M91.708,186.075l2.656-4.236c-1.353-0.848-2.689-1.757-3.971-2.703l-2.969,4.023 C88.809,184.18,90.25,185.161,91.708,186.075z"/>
<path class="st3" d="M123.958,196.381l0.291-4.991c-1.594-0.093-3.203-0.248-4.782-0.461l-0.668,4.955 C120.502,196.114,122.238,196.281,123.958,196.381z"/>
<path class="st3" d="M189.25,158.655l-4.467-2.245c-0.717,1.426-1.497,2.841-2.318,4.207l4.285,2.577 C187.636,161.721,188.477,160.193,189.25,158.655z"/>
<path class="st3" d="M176.291,169.19l3.801,3.248c1.122-1.313,2.204-2.68,3.216-4.064l-4.035-2.951 C178.334,166.705,177.331,167.973,176.291,169.19z"/>
<path class="st3" d="M193.496,148.084l-4.781-1.465c-0.464,1.516-0.996,3.04-1.582,4.528l4.654,1.829 C192.419,151.368,192.994,149.722,193.496,148.084z"/>
<path class="st3" d="M160.164,182.736l2.539,4.307c1.482-0.873,2.949-1.815,4.364-2.801l-2.859-4.103 C162.896,181.053,161.536,181.926,160.164,182.736z"/>
<path class="st3" d="M195.919,136.952l-4.957-0.652c-0.21,1.592-0.481,3.186-0.806,4.736l4.893,1.026 C195.4,140.389,195.692,138.67,195.919,136.952z"/>
<path class="st3" d="M144.818,61.568l-1.221,4.849c1.548,0.39,3.1,0.843,4.611,1.349l1.586-4.742 C148.163,62.479,146.488,61.989,144.818,61.568z"/>
<path class="st3" d="M62.974,106.448l4.744,1.576c0.502-1.509,1.068-3.021,1.686-4.493l-4.611-1.933 C64.126,103.188,63.515,104.819,62.974,106.448z"/>
<path class="st3" d="M116.021,60.549c-1.695,0.3-3.4,0.67-5.066,1.098l1.244,4.843c1.544-0.397,3.123-0.739,4.694-1.017 L116.021,60.549z"/>
<path class="st3" d="M127.362,59.503c-1.726,0.016-3.467,0.098-5.175,0.242l0.42,4.982c1.585-0.134,3.2-0.209,4.802-0.224 L127.362,59.503z"/>
<path class="st3" d="M97.07,72.554l-2.443-4.362c-1.499,0.839-2.987,1.748-4.425,2.703l2.766,4.166 C94.301,74.175,95.681,73.333,97.07,72.554z"/>
<path class="st3" d="M155.601,65.268l-2.016,4.576c1.459,0.642,2.912,1.35,4.319,2.103l2.359-4.408 C158.744,66.725,157.175,65.961,155.601,65.268z"/>
<path class="st3" d="M165.61,70.723l-2.754,4.173c1.331,0.878,2.646,1.82,3.911,2.798l3.059-3.955 C168.464,72.685,167.046,71.67,165.61,70.723z"/>
<path class="st3" d="M133.574,59.722l-0.398,4.984c1.595,0.127,3.2,0.317,4.772,0.562l0.773-4.939 C137.025,60.064,135.294,59.86,133.574,59.722z"/>
<path class="st3" d="M175.844,176.98l-3.494-3.577c-1.145,1.118-2.343,2.205-3.563,3.229l3.217,3.828 C173.318,179.355,174.61,178.184,175.844,176.98z"/>
<path class="st3" d="M88.313,78.465l-3.131-3.899c-1.344,1.079-2.662,2.221-3.917,3.394l3.414,3.653 C85.843,80.525,87.065,79.466,88.313,78.465z"/>
<path class="st3" d="M105.005,63.471c-1.625,0.581-3.245,1.231-4.816,1.932l2.037,4.566c1.456-0.65,2.957-1.252,4.463-1.79 L105.005,63.471z"/>
<path class="st3" d="M65.513,139.335c-0.283-1.565-0.511-3.165-0.674-4.754l-4.974,0.513c0.177,1.716,0.422,3.443,0.728,5.133 L65.513,139.335z"/>
<path class="st3" d="M59.5,128c0,0.297,0.002,0.594,0.006,0.89l5-0.068c-0.004-0.273-0.006-0.547-0.006-0.821 c0-1.327,0.041-2.666,0.123-3.982l-4.99-0.31C59.545,125.126,59.5,126.57,59.5,128z"/>
<path class="st3" d="M82.593,179.247l3.316-3.742c-1.191-1.056-2.359-2.173-3.473-3.321l-3.59,3.481 C80.047,176.902,81.308,178.108,82.593,179.247z"/>
<path class="st3" d="M68.258,149.531c-0.543-1.501-1.034-3.041-1.46-4.577l-4.818,1.337c0.46,1.657,0.99,3.319,1.575,4.939 L68.258,149.531z"/>
<path class="st3" d="M60.3,117.523l4.941,0.764c0.245-1.584,0.552-3.171,0.912-4.716l-4.869-1.136 C60.896,114.103,60.564,115.815,60.3,117.523z"/>
<path class="st3" d="M74.282,94.169l-4.227-2.672c-0.918,1.453-1.793,2.96-2.601,4.481l4.416,2.345 C72.619,96.914,73.431,95.516,74.282,94.169z"/>
<path class="st3" d="M72.667,159.131c-0.786-1.393-1.527-2.831-2.204-4.274l-4.527,2.122c0.729,1.557,1.529,3.108,2.378,4.61 L72.667,159.131z"/>
<path class="st3" d="M78.609,167.868c-1.008-1.248-1.978-2.543-2.881-3.851l-4.113,2.844c0.975,1.409,2.02,2.806,3.106,4.149 L78.609,167.868z"/>
<path class="st3" d="M76.918,82.406c-1.145,1.281-2.256,2.624-3.304,3.99l3.967,3.043c0.973-1.268,2.004-2.513,3.065-3.702 L76.918,82.406z"/>
</g>
</g>
<g>
<g>
<ellipse transform="matrix(0.1585 -0.9874 0.9874 0.1585 -98.361 302.0175)" class="st0" cx="128" cy="208.713" rx="34.4" ry="34.4"/>
</g>
<g>
<path class="st3" d="M128,245.612c-20.347,0-36.899-16.553-36.899-36.899c0-20.347,16.553-36.9,36.899-36.9 s36.899,16.553,36.899,36.9C164.899,229.059,148.347,245.612,128,245.612z M128,176.813c-17.59,0-31.899,14.31-31.899,31.9 c0,17.589,14.31,31.899,31.899,31.899s31.899-14.31,31.899-31.899C159.899,191.123,145.59,176.813,128,176.813z"/>
</g>
<g>
<g>
<g>
<path class="st1" d="M133.239,229.245l-3.4-0.884c-1.209-0.314-2.47-0.314-3.678,0l-3.4,0.884 c-4.91,1.276-9.64-2.709-9.64-8.123l0,0c0-8.805,6.662-15.942,14.88-15.942l0,0c8.218,0,14.88,7.138,14.88,15.942l0,0 C142.88,226.536,138.15,230.521,133.239,229.245z"/>
</g>
<g>
<g>
<g>
<path class="st1" d="M113.5,199.866c1.918,2.699,2.022,6.046,0.233,7.474c-1.789,1.429-4.794,0.398-6.712-2.301 c-1.918-2.699-2.022-6.046-0.233-7.474C108.577,196.136,111.582,197.166,113.5,199.866z"/>
</g>
<g>
<path class="st1" d="M125.483,193.415c0.905,3.635-0.314,7.128-2.723,7.802c-2.409,0.674-5.095-1.726-6-5.36 c-0.905-3.635,0.314-7.128,2.723-7.802C121.891,187.38,124.578,189.78,125.483,193.415z"/>
</g>
</g>
<g>
<g>
<path class="st1" d="M142.5,199.866c-1.918,2.699-2.022,6.046-0.233,7.474c1.789,1.429,4.794,0.398,6.712-2.301 c1.918-2.699,2.022-6.046,0.233-7.474C147.423,196.136,144.418,197.166,142.5,199.866z"/>
</g>
<g>
<path class="st1" d="M130.517,193.415c-0.905,3.635,0.314,7.128,2.723,7.802c2.409,0.674,5.095-1.726,6-5.36 c0.905-3.635-0.314-7.128-2.723-7.802C134.109,187.38,131.422,189.78,130.517,193.415z"/>
</g>
</g>
</g>
</g>
</g>
</g>