-
Notifications
You must be signed in to change notification settings - Fork 1
/
search.html
943 lines (908 loc) · 36.3 KB
/
search.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Petto</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
/>
<link rel="stylesheet" href="./dist/css/app.min.css" />
</head>
<body>
<header class="bg-custom-dark">
<nav
class="flex justify-beetwen align-center header__container px-2 relative"
>
<div class="flex md:justify-between">
<div class="icon flex align-center md:px-3 lg:px-6">
<a href="#">
<i class="text-pink icon-head fab fa-battle-net"></i
></a>
<a href="#" class="text-white uppercase">Petto</a>
</div>
<div class="md:flex align-center md:px-3 lg:px-6 hidden">
<div class="links md:px-3 lg:px-6 text-gray md:px-2">
<i class="icon__link sm:icon__link-sm fas fa-home"></i>
<a href="./index.html" class="text-gray">Home</a>
</div>
<div class="links md:px-3 lg:px-6 text-pink md:px-2">
<i class="icon__link sm:icon__link-sm fas fa-border-style"></i>
<a href="./search.html" class="text-pink">Collections</a>
</div>
<div class="links md:px-3 lg:px-6 text-gray md:px-2">
<i class="icon__link sm:icon__link-sm fas fa-shopping-cart"></i>
<a href="./show.html" class="text-gray">Purchase List</a>
</div>
<div class="button md:px-3 md:block lg:px-6 hidden">
<button type="button">Post An Add</button>
</div>
</div>
</div>
<div class="align-center bg-custom-dark lg:flex">
<button type="button" class="btn relative spn-avat">
<i class="fas fa-comment-alt text-gray"></i>
<span class="text-white bg-custom-pink spn-btn">2</span>
</button>
<button type="button" class="flex btn ml-5 btn align-center">
<img
class="avatar avatar--rounded spn-avat-img"
src="https://images.unsplash.com/photo-1550525811-e5869dd03032?ixlib=rb-1.2.1&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
alt=""
/>
<span
class="text-white spn-avat px-2 font-600 align-center lg:flex"
>
John Doe
<i class="fas fa-chevron-down px-1 text-sm text-gray"></i>
</span>
</button>
</div>
<div class="flex align-center mob-box px-2 justify-center md:hidden">
<input type="checkbox" id="toggle" class="header__toggle" />
<label for="toggle" class="header__burger">
<span class="header__burger-bar"></span>
<span class="header__burger-bar"></span>
<span class="header__burger-bar"></span>
</label>
<div
class="mobile-nav bg-custom-dark pb-6 pt-3 md:hidden px-4 sm:px-6"
>
<nav>
<a
href="./index.html"
class="flex align-center hover:text-gray-400 text-gray-500 text-none py-2"
>
<i class="fas fa-home text-2xl"></i>
<span class="text-nav ml-2">Home</span>
</a>
<a
href="./search.html"
class="flex align-center text-none text-pink py-2"
>
<i class="fas fa-border-style text-2xl"></i>
<span class="text-nav ml-2">Collection</span>
</a>
<a
href="./show.html"
class="flex align-center text-gray-500 hover:text-gray-400 py-2"
>
<i class="fas fa-shopping-cart text-2xl"></i>
<span class="text-nav ml-2">Purchase list</span>
</a>
</nav>
<hr class="my-4 border-bottom" />
<button type="button" class="flex btn align-center">
<img
class="avatar avatar--rounded"
src="https://images.unsplash.com/photo-1550525811-e5869dd03032?ixlib=rb-1.2.1&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
alt=""
/>
<span class="text-white ml-2 font-600"> John Doe </span>
</button>
<nav class="mt-2">
<a
href="#"
class="flex align-center text-gray-500 hover:text-gray-400 py-2"
>
<i class="far fa-user-circle text-2xl"></i>
<span class="text-nav font-medium ml-2">Your profile</span>
</a>
<a
href="#"
class="flex align-center text-gray-500 hover:text-gray-400 py-2"
>
<i class="fas fa-user-cog text-2xl"></i>
<span class="text-nav font-medium ml-2">Settings</span>
</a>
<a
href="#"
class="flex align-center text-gray-500 hover:text-gray-400 py-2"
>
<i class="fas fa-sign-out-alt text-2xl"></i>
<span class="text-nav font-medium ml-2">Logout</span>
</a>
</nav>
<div>
<button
type="button"
class="hover:bg-light btn--primary uppercase text-xs"
>
Post an ad
</button>
</div>
</div>
</div>
</nav>
</header>
<main class="bg-lightgray">
<div class="search__box flex flex-column bg-custom-pink">
<div
class="search__info text-white flex flex-column align-center justify-center"
>
<h1 class="uppercase">Petto</h1>
<p>Buying And Selling Couldn`t be Simpler than this!</p>
</div>
<form
action="./search.html"
class="search__input flex md:flex flex-column justify-center px-2"
>
<select name="apartment-box" id="apartment-select">
<option value="">All Pets</option>
<option value="dog">Dog</option>
<option value="cat">Cat</option>
<option value="bird">Bird</option>
<option value="horse">Horse</option>
<option value="sheep">Sheep</option>
<option value="duck">Duck</option>
</select>
<input
type="text"
class="search__inp"
placeholder="What do you search for ?"
/>
<button type="submit" class="search__button bg-custom-dark text-gray">
Search
</button>
</form>
</div>
<section>
<div class="search__page">
<h2 class="search__head py-4 px-2 lg:hidden">
148 results for pet types in the United States
</h2>
<div class="md:grid md:grid-cols-2 lg:hidden">
<div class="flex flex-column mx-auto px-4 pt-5 lg:hidden">
<div class="search-card flex justify-center flex-column mx-auto">
<div class="relative">
<a href="./show.html">
<img
src="./assets/dog1.jpg"
alt="photo"
class="border-round shadow-md w-100"
/>
</a>
<span class="absolute card-bot">Dog</span>
</div>
<div class="bg-white px-4 py-2">
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-sync-alt"></i>
1 hour ago
</span>
<h2 class="my-3 text-md font-600">
Two Teacup Pomeranian Puppies
</h2>
<p class="pb-2 text-2xl text-gray-500">
California, US - 1,900$
</p>
</div>
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-clinic-medical"></i>
Healthy
</span>
<span class="text-gray-500 px-4">
<i class="fas fa-mars"></i>
Male
</span>
<span class="text-gray-500">
<i class="fas fa-retweet"></i>
2 years
</span>
</div>
<div class="my-3 pt-2">
<button class="btn-trans">Email Owner</button>
<button class="bg-custom-pink text-white btn-num">
(404)-36265332
</button>
</div>
</div>
</div>
</div>
<div class="flex flex-column mx-auto px-4 pt-5 lg:hidden">
<div
class="search-card flex justify-center flex-column mx-auto my-3"
>
<div class="relative">
<a href="./show.html">
<img
src="./assets/dog2.jpg"
alt="photo"
class="border-round shadow-md w-100"
/>
</a>
<span class="absolute card-bot">Dog</span>
</div>
<div class="bg-white px-4 py-2">
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-sync-alt"></i>
1 hour ago
</span>
<h2 class="my-3 text-md font-600">
German Shepherd Puppies
</h2>
<p class="pb-2 text-2xl text-gray-500">
California, US - 900$
</p>
</div>
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-clinic-medical"></i>
Healthy
</span>
<span class="text-gray-500 px-4">
<i class="fas fa-mars"></i>
Male
</span>
<span class="text-gray-500">
<i class="fas fa-retweet"></i>
2 years
</span>
</div>
<div class="my-3 pt-2">
<button class="btn-trans">Email Owner</button>
<button class="bg-custom-pink text-white btn-num">
(404)-36265332
</button>
</div>
</div>
</div>
</div>
<div class="flex flex-column mx-auto px-4 pt-5 lg:hidden">
<div
class="search-card flex justify-center flex-column mx-auto my-3"
>
<div class="relative">
<a href="./show.html">
<img
src="./assets/dog3.jpg"
alt="photo"
class="border-round shadow-md w-100"
/>
</a>
<span class="absolute card-bot">Dog</span>
</div>
<div class="bg-white px-4 py-2">
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-sync-alt"></i>
2 hour ago
</span>
<h2 class="my-3 text-md font-600">
Gracie, Mixed Breed Dog
</h2>
<p class="pb-2 text-2xl text-gray-500">
California, US - 1,900$
</p>
</div>
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-clinic-medical"></i>
Healthy
</span>
<span class="text-gray-500 px-4">
<i class="fas fa-mars"></i>
Female
</span>
<span class="text-gray-500">
<i class="fas fa-retweet"></i>
1 years
</span>
</div>
<div class="my-3 pt-2">
<button class="btn-trans">Email Owner</button>
<button class="bg-custom-pink text-white btn-num">
(404)-36265332
</button>
</div>
</div>
</div>
</div>
<div class="flex flex-column mx-auto px-4 pt-5 lg:hidden">
<div
class="search-card flex justify-center flex-column mx-auto my-3"
>
<div class="relative">
<a href="./show.html">
<img
src="./assets/dog4.jpg"
alt="photo"
class="border-round shadow-md w-100"
/>
</a>
<span class="absolute card-bot">Dog</span>
</div>
<div class="bg-white px-4 py-2">
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-sync-alt"></i>
3 hour ago
</span>
<h2 class="my-3 text-md font-600">
Super Energetic Maltipoo Puppies
</h2>
<p class="pb-2 text-2xl text-gray-500">Texa, US - 100$</p>
</div>
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-clinic-medical"></i>
Healthy
</span>
<span class="text-gray-500 px-4">
<i class="fas fa-mars"></i>
Male
</span>
<span class="text-gray-500">
<i class="fas fa-retweet"></i>
1.5 years
</span>
</div>
<div class="my-3 pt-2">
<button class="btn-trans">Email Owner</button>
<button class="bg-custom-pink text-white btn-num">
(404)-36265332
</button>
</div>
</div>
</div>
</div>
<div class="flex flex-column mx-auto px-4 pt-5 lg:hidden">
<div
class="search-card flex justify-center flex-column mx-auto my-3"
>
<div class="relative">
<a href="./show.html">
<img
src="./assets/dog7.jpg"
alt="photo"
class="border-round shadow-md w-100"
/>
</a>
<span class="absolute card-bot">Dog</span>
</div>
<div class="bg-white px-4 py-2">
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-sync-alt"></i>
1 hour ago
</span>
<h2 class="my-3 text-md font-600">
Playful Oliver, Poodle Puppy
</h2>
<p class="pb-2 text-2xl text-gray-500">
California, US - 2,900$
</p>
</div>
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-clinic-medical"></i>
Healthy
</span>
<span class="text-gray-500 px-4">
<i class="fas fa-mars"></i>
Male
</span>
<span class="text-gray-500">
<i class="fas fa-retweet"></i>
1 years
</span>
</div>
<div class="my-3 pt-2">
<button class="btn-trans">Email Owner</button>
<button class="bg-custom-pink text-white btn-num">
(404)-36265332
</button>
</div>
</div>
</div>
</div>
<div class="flex flex-column mx-auto px-4 pt-5 lg:hidden">
<div
class="search-card flex justify-center flex-column mx-auto my-3"
>
<div class="relative">
<a href="./show.html">
<img
src="./assets/dog6.jpg"
alt="photo"
class="border-round shadow-md w-100"
/>
</a>
<span class="absolute card-bot">Dog</span>
</div>
<div class="bg-white px-4 py-2">
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-sync-alt"></i>
1 hour ago
</span>
<h2 class="my-3 text-md font-600">
Male and Female Yorkie Puppies
</h2>
<p class="pb-2 text-2xl text-gray-500">
New York, US - 900$
</p>
</div>
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-clinic-medical"></i>
Healthy
</span>
<span class="text-gray-500 px-4">
<i class="fas fa-mars"></i>
Male
</span>
<span class="text-gray-500">
<i class="fas fa-retweet"></i>
2 years
</span>
</div>
<div class="my-3 pt-2">
<button class="btn-trans">Email Owner</button>
<button class="bg-custom-pink text-white btn-num">
(404)-36265332
</button>
</div>
</div>
</div>
</div>
</div>
<div
class="flex justify-beetwen align-center px-4 mx-auto pb-5 pt-5 lg:hidden"
>
<span class="hidden md:flex"> Showing 1 to 4 of 45 results </span>
<div class="flex align-center md:justify-center">
<span class="span__bottom text-center"
><i class="fas fa-chevron-left"></i
></span>
<span class="span__bottom text-center">1</span>
<span class="span__bottom text-center">2</span>
<span class="span__bottom z-ind text-center">...</span>
<span class="span__bottom text-center">8</span>
<span class="span__bottom text-center">9</span>
<span class="span__bottom text-center">
<i class="fas fa-chevron-right"></i
></span>
</div>
</div>
</div>
<div
class="left__page lg:grid lg:grid-cols-3 hidden m-width mx-auto lg:gap-3"
>
<div class="lg:flex hidden flex-column form__wrap">
<div>
<form>
<div class="flex">
<label class="room flex flex-column px-4"
>Pets
<select name="apartment-box" class="search-opt">
<option value="">All Pets</option>
<option value="dog">Dog</option>
<option value="cat">Cat</option>
<option value="bird">Bird</option>
<option value="horse">Horse</option>
<option value="sheep">Sheep</option>
<option value="duck">Duck</option>
</select>
</label>
<label class="room flex flex-column"
>Animals
<select name="apartment-box" class="search-opt">
<option value="">All Animals</option>
<option value="dog">Dog</option>
<option value="cat">Cat</option>
<option value="bird">Bird</option>
<option value="horse">Horse</option>
<option value="sheep">Sheep</option>
<option value="duck">Duck</option>
</select>
</label>
</div>
<hr class="border-left" />
<div class="flex flex-column px-4">
<h2 class="my-3">Pet Type</h2>
<label class="lab-left"
><input type="radio" name="radio" class="radio-check" />
Dog</label
>
<label class="lab-left"
><input type="radio" name="radio" class="radio-check" />
Cat</label
>
<label class="lab-left"
><input type="radio" name="radio" class="radio-check" />
Puppy</label
>
<label class="lab-left"
><input type="radio" name="radio" class="radio-check" />
Bird</label
>
</div>
<hr class="border-left" />
<div class="flex flex-column px-4">
<h2 class="my-3">Animals</h2>
<label class="lab-left"
><input type="checkbox" name="checkbox" /> Cow</label
>
<label class="lab-left"
><input type="checkbox" name="checkbox" /> Horse</label
>
<label class="lab-left"
><input type="checkbox" name="checkbox" /> Sheep</label
>
<label class="lab-left"
><input type="checkbox" name="checkbox" /> Goat</label
>
</div>
</form>
</div>
</div>
<div class="px-4 pt-5 lg:col-lg-span-2">
<h2 class="search__head2 py-4 hidden lg:flex">
148 results for pet types in the United States
</h2>
<div class="search-card flex my-3 relative">
<span class="icon-right absolute flex align-center">
<i class="far fa-bookmark text-gray-500 px-4"></i>
<i class="fas fa-thumbs-up text-pink"></i>
</span>
<div class="relative">
<a href="./show.html">
<img
src="./assets/dog1.jpg"
alt="photo"
class="shadow-md img__search"
/>
</a>
<span class="absolute card-bot">Dog</span>
</div>
<div class="bg-white px-4 py-2">
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-sync-alt"></i>
1 hour ago
</span>
<h2 class="my-3 text-md font-600">
Two Teacup Pomeranian Puppies
</h2>
<p class="pb-2 text-2xl text-gray-500">
California, US - 1,900$
</p>
</div>
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-clinic-medical"></i>
Healthy
</span>
<span class="text-gray-500 px-4">
<i class="fas fa-mars"></i>
Male
</span>
<span class="text-gray-500">
<i class="fas fa-retweet"></i>
2 years
</span>
</div>
<div class="my-3 pt-2">
<button class="btn-trans">Email Owner</button>
<button class="bg-custom-pink text-white btn-num">
(404)-36265332
</button>
</div>
</div>
</div>
<div class="search-card flex my-3 relative">
<span class="icon-right absolute flex align-center">
<i class="far fa-bookmark text-gray-500 px-4"></i>
<i class="fas fa-thumbs-up text-pink"></i>
</span>
<div class="relative">
<a href="./show.html">
<img
src="./assets/cat2.jpg"
alt="photo"
class="shadow-md img__search"
/>
</a>
<span class="absolute card-bot">Cat</span>
</div>
<div class="bg-white px-4 py-2">
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-sync-alt"></i>
1 hour ago
</span>
<h2 class="my-3 text-md font-600">Damon, Exotic Shorthair</h2>
<p class="pb-2 text-2xl text-gray-500">
New York, US - 2,900$
</p>
</div>
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-clinic-medical"></i>
Healthy
</span>
<span class="text-gray-500 px-4">
<i class="fas fa-mars"></i>
Male
</span>
<span class="text-gray-500">
<i class="fas fa-retweet"></i>
2 years
</span>
</div>
<div class="my-3 pt-2">
<button class="btn-trans">Email Owner</button>
<button class="bg-custom-pink text-white btn-num">
(404)-36265332
</button>
</div>
</div>
</div>
<div class="search-card flex my-3 relative">
<span class="icon-right absolute flex align-center">
<i class="far fa-bookmark text-gray-500 px-4"></i>
<i class="fas fa-thumbs-up text-pink"></i>
</span>
<div class="relative">
<a href="./show.html">
<img
src="./assets/search1.jpeg"
alt="photo"
class="shadow-md img__search"
/>
</a>
<span class="absolute card-bot">Serval</span>
</div>
<div class="bg-white px-4 py-2">
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-sync-alt"></i>
2 hour ago
</span>
<h2 class="my-3 text-md font-600">
Registered Pair Servals, Serval
</h2>
<p class="pb-2 text-2xl text-gray-500">
Alabama, US - 11,900$
</p>
</div>
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-clinic-medical"></i>
Healthy
</span>
<span class="text-gray-500 px-4">
<i class="fas fa-mars"></i>
Female
</span>
<span class="text-gray-500">
<i class="fas fa-retweet"></i>
5 years
</span>
</div>
<div class="my-3 pt-2">
<button class="btn-trans">Email Owner</button>
<button class="bg-custom-pink text-white btn-num">
(404)-36265332
</button>
</div>
</div>
</div>
<div class="search-card flex my-3 relative">
<span class="icon-right absolute flex align-center">
<i class="far fa-bookmark text-gray-500 px-4"></i>
<i class="fas fa-thumbs-up text-pink"></i>
</span>
<div class="relative">
<a href="./show.html">
<img
src="./assets/bird.jpg"
alt="photo"
class="shadow-md img__search"
/>
</a>
<span class="absolute card-bot">Parrot</span>
</div>
<div class="bg-white px-4 py-2">
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-sync-alt"></i>
1 hour ago
</span>
<h2 class="my-3 text-md font-600">
Jlly, Blue and Gold Macaw
</h2>
<p class="pb-2 text-2xl text-gray-500">
California, US - 600$
</p>
</div>
<div class="pt-2">
<span class="text-gray-500">
<i class="fas fa-clinic-medical"></i>
Healthy
</span>
<span class="text-gray-500 px-4">
<i class="fas fa-mars"></i>
Male
</span>
<span class="text-gray-500">
<i class="fas fa-retweet"></i>
15 months
</span>
</div>
<div class="my-3 pt-2">
<button class="btn-trans">Email Owner</button>
<button class="bg-custom-pink text-white btn-num">
(404)-36265332
</button>
</div>
</div>
</div>
<div class="flex justify-beetwen align-center pb-5">
<span> Showing 1 to 4 of 45 results </span>
<div class="flex align-center">
<span class="span__bottom text-center"
><i class="fas fa-chevron-left"></i
></span>
<span class="span__bottom text-center">1</span>
<span class="span__bottom text-center">2</span>
<span class="span__bottom z-ind text-center">...</span>
<span class="span__bottom text-center">8</span>
<span class="span__bottom text-center">9</span>
<span class="span__bottom text-center">
<i class="fas fa-chevron-right"></i
></span>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="footer__box bg-white px-2">
<div class="mx-auto m-width grid lg:grid-cols-4">
<div class="footer__logo flex flex-column py-4 px-2 lg:col-lg-span-1">
<div class="flex align-center">
<a href="./index.html">
<i class="text-pink icon-head fab fa-battle-net"></i
></a>
<a href="#" class="text-pink uppercase text-none text-md font-600"
>Petto</a
>
</div>
<div class="">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quis cras
consequat ornare mi. Nulla lectus mauris bibendum commodo.
</p>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 py-4 lg:col-lg-span-3">
<div class="flex flex-column px-2">
<h2 class="text-pink font-600 text-md pb-5 uppercase">Places</h2>
<div class="flex flex-column">
<a
href="#"
class="text-none text-2xl text-black pb-2 hover:text-pink"
>California</a
>
<a
href="#"
class="text-none text-2xl text-black pb-2 hover:text-pink"
>San Francisco</a
>
<a
href="#"
class="text-none text-2xl text-black pb-2 hover:text-pink"
>Texas</a
>
<a
href="#"
class="text-none text-2xl text-black pb-2 hover:text-pink"
>Dallas</a
>
<a
href="#"
class="text-none text-2xl text-black pb-2 hover:text-pink"
>New York</a
>
</div>
</div>
<div class="flex flex-column text-md px-2">
<h2 class="text-pink font-600 pb-5 uppercase">Pages</h2>
<div class="flex flex-column">
<a
href="#"
class="text-none text-2xl text-black pb-2 hover:text-pink"
>Home</a
>
<a
href="#"
class="text-none text-2xl text-black pb-2 hover:text-pink"
>About Us</a
>
<a
href="#"
class="text-none text-2xl text-black pb-2 hover:text-pink"
>Contact</a
>
<a
href="#"
class="text-none text-2xl text-black pb-2 hover:text-pink"
>Terms & Conditions</a
>
<a
href="#"
class="text-none text-2xl text-black pb-2 hover:text-pink"
>Privacy Policy</a
>
</div>
</div>
<div class="flex flex-column px-2 soc-icon">
<div class="flex">
<div class="flex align-center flex-column pb-2">
<div class="flex align-center pb-2">
<h1 class="uppercase text-pink">Country</h1>
<button class="foot__btn1">Uzbekistan</button>
</div>
<div class="flex align-center pb-2">
<h1 class="uppercase text-pink">Language</h1>
<button class="foot__btn">Uzbek</button>
</div>
<div class="flex align-center pb-2">
<h1 class="uppercase text-pink">Currency</h1>
<button class="foot__btn">Uz Sum</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mx-auto m-width">
<hr class="border-foot" />
<div class="flex justify-beetwen align-center py-4 text-foot text-sm">
<div>
<p>© Copyright Petto. All rights reserved.</p>
</div>
<div class="flex align-center mt-3">
<a href="#" class="footer__icons"
><i class="fab fa-facebook-square px-4"></i
></a>
<a href="#" class="footer__icons"
><i class="fab fa-twitter-square px-4"></i
></a>
<a href="#" class="footer__icons"
><i class="fab fa-youtube px-4"></i
></a>
<a href="#" class="footer__icons"
><i class="fab fa-instagram pl-2"></i
></a>
</div>
</div>
</div>
</footer>
</body>
</html>