-
Notifications
You must be signed in to change notification settings - Fork 76
/
index.html
1515 lines (1455 loc) · 120 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tailwind Components - Responsive Cards</title>
</head>
<body>
<section class="container mx-auto lg:mt-20 transform duration-500 p-10 mt-10">
<div class="w-12 h-12 rounded-xl bg-gradient-to-br flex items-center justify-center from-cyan-400 to-cyan-900 mb-8">
<svg width="32" height="32" fill="none" viewBox="0 0 32 32">
<g clip-path="url(#build-anything_svg__clip0)">
<g filter="url(#build-anything_svg__filter0_d)">
<path fill="#FDBA74" fill-rule="evenodd"
d="M25.414 6.586a2 2 0 010 2.828l-20 20a2 2 0 11-2.828-2.828l20-20a2 2 0 012.828 0z" clip-rule="evenodd">
</path>
</g>
<g filter="url(#build-anything_svg__filter1_dd)">
<path fill="#FFEDD5"
d="M26.85 3.844c.822-.339 1.644.483 1.305 1.305l-1.841 4.47 3.135 3.68c.577.678.048 1.715-.839 1.646l-4.817-.375-2.53 4.116c-.465.758-1.614.576-1.823-.288l-1.139-4.7-4.7-1.139c-.864-.209-1.046-1.358-.288-1.824l4.116-2.529-.375-4.817c-.069-.887.968-1.416 1.646-.84l3.68 3.136 4.47-1.841z">
</path>
</g>
<g filter="url(#build-anything_svg__filter2_dd)">
<path fill="#FED7AA"
d="M6.535 3.18a.5.5 0 01.93 0l.95 2.406 2.406.949a.5.5 0 010 .93l-2.406.95-.95 2.406a.5.5 0 01-.93 0l-.949-2.407-2.406-.949a.5.5 0 010-.93l2.406-.95.95-2.406z">
</path>
</g>
<g filter="url(#build-anything_svg__filter3_dd)">
<path fill="#FED7AA"
d="M20.535 23.18a.5.5 0 01.93 0l.667 1.689 1.69.666a.5.5 0 010 .93l-1.69.666-.666 1.69a.5.5 0 01-.93 0l-.667-1.69-1.69-.666a.5.5 0 010-.93l1.69-.666.666-1.69z">
</path>
</g>
</g>
<defs>
<filter id="build-anything_svg__filter0_d" width="28" height="28" x="0" y="5"
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
<feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood>
<feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix>
<feOffset dy="1"></feOffset>
<feGaussianBlur stdDeviation="1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"></feColorMatrix>
<feBlend in2="BackgroundImageFix" result="effect1_dropShadow"></feBlend>
<feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"></feBlend>
</filter>
<filter id="build-anything_svg__filter1_dd" width="22.855" height="22.855" x="9.836" y="0.309"
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
<feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood>
<feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix>
<feOffset dy="1"></feOffset>
<feGaussianBlur stdDeviation="1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"></feColorMatrix>
<feBlend in2="BackgroundImageFix" result="effect1_dropShadow"></feBlend>
<feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix>
<feOffset dy="1"></feOffset>
<feGaussianBlur stdDeviation="1.5"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix>
<feBlend in2="effect1_dropShadow" result="effect2_dropShadow"></feBlend>
<feBlend in="SourceGraphic" in2="effect2_dropShadow" result="shape"></feBlend>
</filter>
<filter id="build-anything_svg__filter2_dd" width="14.274" height="14.274" x="-0.137" y="0.863"
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
<feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood>
<feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix>
<feOffset dy="1"></feOffset>
<feGaussianBlur stdDeviation="1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"></feColorMatrix>
<feBlend in2="BackgroundImageFix" result="effect1_dropShadow"></feBlend>
<feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix>
<feOffset dy="1"></feOffset>
<feGaussianBlur stdDeviation="1.5"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix>
<feBlend in2="effect1_dropShadow" result="effect2_dropShadow"></feBlend>
<feBlend in="SourceGraphic" in2="effect2_dropShadow" result="shape"></feBlend>
</filter>
<filter id="build-anything_svg__filter3_dd" width="12.274" height="12.274" x="14.863" y="20.863"
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
<feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood>
<feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix>
<feOffset dy="1"></feOffset>
<feGaussianBlur stdDeviation="1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"></feColorMatrix>
<feBlend in2="BackgroundImageFix" result="effect1_dropShadow"></feBlend>
<feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix>
<feOffset dy="1"></feOffset>
<feGaussianBlur stdDeviation="1.5"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix>
<feBlend in2="effect1_dropShadow" result="effect2_dropShadow"></feBlend>
<feBlend in="SourceGraphic" in2="effect2_dropShadow" result="shape"></feBlend>
</filter>
<clipPath id="build-anything_svg__clip0">
<path fill="#fff" d="M0 0h32v32H0z"></path>
</clipPath>
</defs>
</svg>
</div>
<h2 class="sm:text-lg sm:leading-snug font-semibold tracking-wide uppercase text-cyan-600 mb-3">
Tailwind Components
</h2>
<h1 class="text-4xl sm:text-5xl lg:text-6xl leading-none font-extrabold text-gray-900 tracking-tight mt-4 mb-4 md:mt-8 md:mb-8">
Responsive Cards
</h1>
<p class="max-w-5xl text-lg sm:text-2xl sm:leading-10 space-y-6 mb-6 text-gray-700">
A growing collection of responsive text/image cards you can use/copy-paste in your tailwind css projects. Some of these cards have animated hover effects, scroll down to find them out.
</p>
<p>
<a class="github-button" href="https://github.com/hasinhayder/tailwind-cards" data-size="large" data-show-count="true" aria-label="Star hasinhayder/tailwind-cards on GitHub"> Download From
Github
</a>
<span> </span>
<a class="github-button" href="https://github.com/HasinHayder" data-size="large" aria-label="Follow @HasinHayder on GitHub">Follow @HasinHayder</a>
</p>
<p class="text-gray-300">
* Artworks by
<a href="https://www.mathiole.com/" nofollow>Matheus Lopes</a>
</p>
</section>
<section class="container mx-auto p-10 md:p-20 transform duration-500">
<article class="flex flex-wrap md:flex-nowrap shadow-lg mx-auto max-w-xl ">
<img class="w-full md:w-40 h-auto" src="https://weandthecolor.com/wp-content/uploads/2012/03/A-Way-Out-Illustration-by-Matheus-Lopes-4563464.jpg" alt="" />
<div class="p-10 my-auto">
<h1 class="text-2xl font-semibold text-gray-800">A Way Out</h1>
<p class="text-base text-gray-400 mt-2">
Super creative and colorful illustrations by Matheus Lopes. Check out more of his amazing artworks in his portfolio.
</p>
</div>
</article>
</section>
<section class="container mx-auto p-10 md:p-20 transform duration-500">
<section class="shadow-lg mx-auto max-w-sm ">
<img class="w-full h-auto" src="https://weandthecolor.com/wp-content/uploads/2012/03/Alternate-Ending-Illustration-by-Matheus-Lopes-3454646.jpg" alt="" />
<div class="p-7 my-auto pb-10 ">
<h1 class="text-2xl font-semibold text-gray-800">Alternate Ending</h1>
<p class="text-base text-gray-400 mt-2">
Super creative and colorful illustrations by Matheus Lopes. Check out more of his amazing artworks in his portfolio.
</p>
</div>
</section>
</section>
<section class="container mx-auto p-10 md:p-20 transform duration-500">
<article class="shadow-lg mx-auto relative max-w-sm">
<img class="w-full h-auto" src="https://weandthecolor.com/wp-content/uploads/2012/03/Colorphobia-Illustration-by-Matheus-Lopes-34645646.jpg" alt="" />
<span class="absolute right-4 top-4 bg-gray-600 text-white rounded-md p-1 pl-4 pr-4 font-semibold">Matheus
Lopes</span>
<div class="p-7 my-auto pb-10 ">
<h1 class="text-2xl font-semibold text-gray-800">Colorphobia</h1>
<p class="text-base text-gray-400 mt-2">
Super creative and colorful illustrations by Matheus Lopes. Check out more of his amazing artworks in his portfolio.
</p>
</div>
</article>
</section>
<section class="container mx-auto p-10 md:p-20 transform duration-500">
<article class="shadow-lg mx-auto relative max-w-md group cursor-pointer">
<div class="overflow-hidden">
<img class="w-full h-auto transform hover:scale-110 duration-200" src="https://www.artisticmoods.com/wp-content/uploads/tropicalia_by_mathiole-d31lvne.jpg" alt="" />
</div>
<div class="p-7 my-auto pb-12 ">
<h1 class="text-4xl font-semibold text-gray-800 mt-4">Tropicalia</h1>
<p class="text-2xl text-gray-400 mt-4 leading-relaxed">
Super creative and colorful illustrations by Matheus Lopes. Check out more of his amazing artworks in his portfolio.
</p>
</div>
<div class="border-t pt-8 pb-8 text-center text-base text-gray-400 uppercase tracking-widest group-hover:text-gray-600 bg-gray-50">
Matheus Lopes
</div>
</article>
</section>
<section class="container mx-auto p-10 md:p-20 grid lg:grid-cols-2 2xl:grid-cols-3 grid-cols-1 gap-y-10 transform duration-500">
<article class="shadow-md mx-auto max-w-sm transform hover:-translate-y-1 duration-300 hover:shadow-xl cursor-pointer">
<div class="max-h-140 overflow-hidden">
<img class="w-full h-auto" src="https://images.squarespace-cdn.com/content/v1/58dd442dbebafb88160c6929/1524859470168-GEDZWSZVFS2VN76NFZY0/ke17ZwdGBToddI8pDm48kPvdHwxe8vxmYnjZvCzAU61Zw-zPPgdn4jUwVcJE1ZvWQUxwkmyExglNqGp0IvTJZUJFbgE-7XRK3dMEBRBhUpwxsJYjeBOStWfhZBaQGTlDOVYbSZjX976lCUHHLPdHUlrmON35exl807wLzw9VMGw/visit06.jpg?format=800w"
alt="" />
</div>
<div class="p-7 my-auto pb-12 ">
<h1 class="text-2xl font-semibold text-gray-700">Visit Mordor</h1>
<p class="text-xl font-light leading-relaxed text-gray-400 mt-5">
Super creative and colorful illustrations by Matheus Lopes. Check out more of his amazing artworks in his portfolio.
</p>
</div>
</article>
<article class="shadow-md mx-auto max-w-sm transform hover:-translate-y-1 duration-300 hover:shadow-xl cursor-pointer">
<div class="max-h-140 overflow-hidden">
<img class="w-full h-auto" src="https://images.squarespace-cdn.com/content/v1/58dd442dbebafb88160c6929/1593716780236-POZ4F9TRGHIMKVVZRK7U/ke17ZwdGBToddI8pDm48kPvdHwxe8vxmYnjZvCzAU61Zw-zPPgdn4jUwVcJE1ZvWQUxwkmyExglNqGp0IvTJZUJFbgE-7XRK3dMEBRBhUpwxsJYjeBOStWfhZBaQGTlDOVYbSZjX976lCUHHLPdHUlrmON35exl807wLzw9VMGw/visitshire.jpg?format=800w"
alt="" />
</div>
<div class="p-7 my-auto pb-12 ">
<h1 class="text-2xl font-semibold text-gray-700">Visit The Shire</h1>
<p class="text-xl font-light leading-relaxed text-gray-400 mt-5">
Super creative and colorful illustrations by Matheus Lopes. Check out more of his amazing artworks in his portfolio.
</p>
</div>
</article>
<article class="shadow-md mx-auto max-w-sm transform hover:-translate-y-1 duration-300 hover:shadow-xl cursor-pointer ">
<div class="max-h-140 overflow-hidden">
<img class="w-full h-auto" src="https://images.squarespace-cdn.com/content/v1/58dd442dbebafb88160c6929/1524859465160-0HQ919Q839O3K565JUCK/ke17ZwdGBToddI8pDm48kPvdHwxe8vxmYnjZvCzAU61Zw-zPPgdn4jUwVcJE1ZvWQUxwkmyExglNqGp0IvTJZUJFbgE-7XRK3dMEBRBhUpwxsJYjeBOStWfhZBaQGTlDOVYbSZjX976lCUHHLPdHUlrmON35exl807wLzw9VMGw/visit02.jpg?format=800w"
alt="" />
</div>
<div class="p-7 my-auto pb-12 ">
<h1 class="text-2xl font-semibold text-gray-700">
Visit Isla Nublar
</h1>
<p class="text-xl font-light leading-relaxed text-gray-400 mt-5">
Super creative and colorful illustrations by Matheus Lopes. Check out more of his amazing artworks in his portfolio.
</p>
</div>
</article>
</section>
<section class="container mx-auto p-10 md:p-20 antialiased ">
<article class=" flex flex-wrap md:flex-nowrap shadow-lg mx-auto max-w-3xl group cursor-pointer transform duration-500 hover:-translate-y-1">
<img class="w-full md:w-52" src="https://i.ibb.co/Kr4b0zJ/152013403-10158311889099633-8423107287930246533-o.jpg" alt="" />
<div class="">
<div class="p-5 pb-10">
<h1 class="text-2xl font-semibold text-gray-800 mt-4">
The Magnificent Bogra
</h1>
<p class="text-xl text-gray-400 mt-2 leading-relaxed">
Located in Rajshahi Division, Bogra is one of the oldest and most fascinating towns in Bangladesh
</p>
</div>
<div class="bg-blue-50 p-5">
<div class="sm:flex sm:justify-between">
<div>
<div class="text-lg text-gray-700">
<span class="text-gray-900 font-bold">196 km</span> from Dhaka
</div>
<div class="flex items-center">
<div class="flex">
<svg class="w-4 h-4 mx-px fill-current text-green-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-green-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-green-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-green-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-green-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
</div>
<div class="text-gray-600 ml-2 text-sm md:text-base mt-1">
16 reviews
</div>
</div>
</div>
<button class="mt-3 sm:mt-0 py-2 px-5 md:py-3 md:px-6 bg-purple-700 hover:bg-purple-600 font-bold text-white md:text-lg rounded-lg shadow-md">
Book Ticket
</button>
</div>
<div class="mt-3 text-gray-600 text-sm md:text-sm">
*Places to visit: Mahasthangarh, Vasu Bihar & Momo Inn
</div>
</div>
</div>
</article>
<p class="text-xs text-center text-gray-400 mt-5">
Original: https://codepen.io/steveschoger/pen/XwzRRZ
</p>
</section>
<section class="container mx-auto p-10 md:p-20 antialiased">
<article class="mx-auto max-w-md w-full sm:w-1/2 lg:w-1/3 py-6 px-3 cursor-pointer transform duration-500 hover:-translate-y-1">
<div class="bg-white shadow-xl rounded-lg overflow-hidden">
<div class="bg-cover bg-center h-80 p-4" style="background-image: url(https://images.squarespace-cdn.com/content/v1/58dd442dbebafb88160c6929/1524859464600-90ZK15JJC3N47IZSR3MY/ke17ZwdGBToddI8pDm48kPvdHwxe8vxmYnjZvCzAU61Zw-zPPgdn4jUwVcJE1ZvWQUxwkmyExglNqGp0IvTJZUJFbgE-7XRK3dMEBRBhUpwxsJYjeBOStWfhZBaQGTlDOVYbSZjX976lCUHHLPdHUlrmON35exl807wLzw9VMGw/visit03.jpg?format=800w)">
<div class="flex justify-end">
<svg class="h-6 w-6 text-white fill-current" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path
d="M12.76 3.76a6 6 0 0 1 8.48 8.48l-8.53 8.54a1 1 0 0 1-1.42 0l-8.53-8.54a6 6 0 0 1 8.48-8.48l.76.75.76-.75zm7.07 7.07a4 4 0 1 0-5.66-5.66l-1.46 1.47a1 1 0 0 1-1.42 0L9.83 5.17a4 4 0 1 0-5.66 5.66L12 18.66l7.83-7.83z">
</path>
</svg>
</div>
</div>
<div class="p-4 py-5">
<p class="uppercase tracking-wide text-sm font-bold text-gray-700">
Castlevania • 10000y old
</p>
<p class="text-3xl text-gray-900 mt-1.5 mb-1.5">$12,750,000</p>
<p class="text-gray-700">404 Nightmare Streets</p>
</div>
<div class="flex p-4 border-t border-gray-200 text-gray-700">
<div class="flex-1 inline-flex items-center">
<svg class="h-6 w-6 text-gray-600 fill-current mr-3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path
d="M0 16L3 5V1a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v4l3 11v5a1 1 0 0 1-1 1v2h-1v-2H2v2H1v-2a1 1 0 0 1-1-1v-5zM19 5h1V1H4v4h1V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1h2V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1zm0 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V6h-2v2a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V6H3.76L1.04 16h21.92L20.24 6H19zM1 17v4h22v-4H1zM6 4v4h4V4H6zm8 0v4h4V4h-4z">
</path>
</svg>
<p><span class="text-gray-900 font-bold">X</span> Bedrooms</p>
</div>
<div class="flex-1 inline-flex items-center">
<svg class="h-6 w-6 text-gray-600 fill-current mr-3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M17.03 21H7.97a4 4 0 0 1-1.3-.22l-1.22 2.44-.9-.44 1.22-2.44a4 4 0 0 1-1.38-1.55L.5 11h7.56a4 4 0 0 1 1.78.42l2.32 1.16a4 4 0 0 0 1.78.42h9.56l-2.9 5.79a4 4 0 0 1-1.37 1.55l1.22 2.44-.9.44-1.22-2.44a4 4 0 0 1-1.3.22zM21 11h2.5a.5.5 0 1 1 0 1h-9.06a4.5 4.5 0 0 1-2-.48l-2.32-1.15A3.5 3.5 0 0 0 8.56 10H.5a.5.5 0 0 1 0-1h8.06c.7 0 1.38.16 2 .48l2.32 1.15a3.5 3.5 0 0 0 1.56.37H20V2a1 1 0 0 0-1.74-.67c.64.97.53 2.29-.32 3.14l-.35.36-3.54-3.54.35-.35a2.5 2.5 0 0 1 3.15-.32A2 2 0 0 1 21 2v9zm-5.48-9.65l2 2a1.5 1.5 0 0 0-2-2zm-10.23 17A3 3 0 0 0 7.97 20h9.06a3 3 0 0 0 2.68-1.66L21.88 14h-7.94a5 5 0 0 1-2.23-.53L9.4 12.32A3 3 0 0 0 8.06 12H2.12l3.17 6.34z">
</path>
</svg>
<p><span class="text-gray-900 font-bold">Y</span> Bathrooms</p>
</div>
</div>
<div class="px-4 pt-3 pb-4 border-t border-gray-200 bg-gray-100">
<div class="text-xs uppercase font-bold text-gray-600 tracking-wide">
Call For Booking
</div>
<div class="flex items-center pt-2">
<div class="bg-cover bg-center w-10 h-10 rounded-full mr-3" style="background-image: url(https://st.depositphotos.com/1067257/2844/v/600/depositphotos_28440617-stock-illustration-black-and-white-human-skull.jpg)">
</div>
<div>
<p class="font-bold text-gray-900">Doctor Doom</p>
<p class="text-sm text-gray-700">(000) 000-0000</p>
</div>
</div>
</div>
</div>
</article>
<p class="text-xs text-center text-gray-400">
Original: https://codepen.io/steveschoger/pen/YbQXGq
</p>
</section>
<section class="container mx-auto py-10 md:py-20 antialiased ">
<section class="grid lg:grid-cols-2 2xl:grid-cols-4 grid-cols-1 gap-8">
<article class="mx-auto max-w-sm pb-8 bg-cover bg-center cursor-pointer transform duration-500 hover:-translate-y-1 shadow-2xl rounded-xl">
<img class="mx-auto mb-20 mt-10 w-40" src="https://penpot.app/images/cross-teams.webp" alt="" />
<h2 class="text-center text-3xl mt-8 font-bold min-h-18 px-12">
For cross-domain teams
</h2>
<p class="m-4 text-lg p-4 leading-relaxed text-center ">
Product features and capabilities meant for the different roles in the next-decade team. Say goodbye to the legendary pain of the design silo.
</p>
</article>
<article class="mx-auto max-w-sm pb-8 bg-cover bg-center cursor-pointer transform duration-500 hover:-translate-y-1 shadow-2xl rounded-xl">
<img class="mx-auto mb-20 mt-10 w-40" src="https://penpot.app/images/open-standards.webp" alt="" />
<h2 class="text-center text-3xl mt-8 font-bold min-h-18 px-12">
With love and Open Standards
</h2>
<p class="m-4 text-lg p-4 leading-relaxed text-center">
Using SVG as no other prototyping tool does, Penpot files sport compatibility with most of the vectorial tools, are tech friendly and extremely easy to use in web.
</p>
</article>
<article class="mx-auto max-w-sm pb-8 bg-cover bg-center cursor-pointer transform duration-500 hover:-translate-y-1 shadow-2xl rounded-xl">
<img class="mx-auto mb-20 mt-10 w-40" src="https://penpot.app/images/multi-platforms.webp" alt="" />
<h2 class="text-center text-3xl mt-8 font-bold min-h-18 px-12">
Multiplatform
</h2>
<p class="m-4 text-lg p-4 leading-relaxed text-center ">
Being web based, Penpot is not dependent on operating systems or installations, you will only need to run a modern browser.
</p>
</article>
<article class="mx-auto max-w-sm pb-8 bg-cover bg-center cursor-pointer transform duration-500 hover:-translate-y-1 shadow-2xl rounded-xl">
<img class="mx-auto mb-20 mt-10 w-40" src="https://penpot.app/images/open-source.webp" alt="" />
<h2 class="text-center text-3xl mt-8 font-bold min-h-18 px-12">
Open Source power
</h2>
<p class="m-4 text-lg p-4 leading-relaxed text-center ">
Build for the community and empowered by the community. Extreme adaptability: contributions can range from add-ons and plugins to core functionality.
</p>
</article>
</section>
<p class="text-xs text-center text-gray-400 mt-10">
Inspired From: https://penpot.app
</p>
</section>
<section class="container mx-auto p-10 md:py-20 px-0 md:p-20 md:px-0">
<section class="grid lg:grid-cols-2 2xl:grid-cols-4 grid-cols-1 gap-10 antialiased">
<article class="flex flex-col shadow-xl mx-auto max-w-sm bg-red-100 py-20 px-12 transform duration-500 hover:-translate-y-2 cursor-pointer max-h-190 rounded-md">
<div class="min-h-62">
<img class="mx-auto" src="https://demo.happyaddons.com/wp-content/uploads/2019/05/card-image13a.png" alt="" />
</div>
<h1 class="font-extrabold text-6xl mt-28 mb-10 text-gray-800">01.</h1>
<h2 class="font-bold mb-5 text-gray-800">Stylish Egg Chair</h2>
<p class="text-sm leading-relaxed text-gray-700">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Id beatae repellendus nam! Dolor dignissimos unde, dolore laboriosam atque numquam quam.
</p>
</article>
<article class="flex flex-col shadow-xl mx-auto max-w-sm bg-yellow-100 py-20 px-12 transform duration-500 hover:-translate-y-2 cursor-pointer mt-0 md:mt-20 max-h-190 rounded-md">
<div class="min-h-62">
<img class="mx-auto" src="https://www.dropbox.com/s/8wcoj21a4vxbk7s/tl.png?dl=1" alt="" />
</div>
<h1 class="font-extrabold text-6xl mt-28 mb-10 text-gray-800">02.</h1>
<h2 class="font-bold mb-5 text-gray-800">Stylish Leather Bag</h2>
<p class="text-sm leading-relaxed text-gray-700">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Id beatae repellendus nam! Dolor dignissimos unde, dolore laboriosam atque numquam quam.
</p>
</article>
<article class="flex flex-col shadow-xl mx-auto max-w-sm bg-blue-100 py-20 px-12 transform duration-500 hover:-translate-y-2 cursor-pointer max-h-190 rounded-md">
<div class="min-h-62">
<img class="mx-auto" src="https://www.dropbox.com/s/3e0m3ttp2tdi1ly/chair.png?dl=1" alt="" />
</div>
<h1 class="font-extrabold text-6xl mt-28 mb-10 text-gray-800">03.</h1>
<h2 class="font-bold mb-5 text-gray-800">Modern Wooden Chair</h2>
<p class="text-sm leading-relaxed text-gray-700">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Id beatae repellendus nam! Dolor dignissimos unde, dolore laboriosam atque numquam quam.
</p>
</article>
<article class="flex flex-col shadow-xl mx-auto max-w-sm bg-purple-100 py-20 px-12 transform duration-500 hover:-translate-y-2 cursor-pointer mt-0 md:mt-20 max-h-190 rounded-md">
<div class="min-h-62">
<img class="mx-auto" src="https://www.dropbox.com/s/lllrkvwvfn97piz/toppng.com-furniture-1200x957.png?dl=1" alt="" />
</div>
<h1 class="font-extrabold text-6xl mt-28 mb-10 text-gray-800">04.</h1>
<h2 class="font-bold mb-5 text-gray-800">Comfortable Chair</h2>
<p class="text-sm leading-relaxed text-gray-700">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Id beatae repellendus nam! Dolor dignissimos unde, dolore laboriosam atque numquam quam.
</p>
</article>
</section>
</section>
<section class="container mx-auto p-10 md:py-20 px-0 md:p-20 md:px-0 antialiased">
<section class="grid lg:grid-cols-2 2xl:grid-cols-3 grid-cols-1 gap-40 ">
<article class="mx-auto max-w-sm shadow-xl bg-cover bg-center min-h-150 transform duration-500 hover:-translate-y-2 cursor-pointer group" style="background-image: url(https://images.pexels.com/photos/3299386/pexels-photo-3299386.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=900);">
<div class="bg-black bg-opacity-20 min-h-150 px-10 flex flex-wrap flex-col pt-96 hover:bg-opacity-75 transform duration-300">
<h1 class="text-white text-3xl mb-5 transform translate-y-20 group-hover:translate-y-0 duration-300">
On A Day Like Today
</h1>
<div class="w-16 h-2 bg-yellow-500 rounded-full mb-5 transform translate-y-20 group-hover:translate-y-0 duration-300">
</div>
<p class="opacity-0 text-white text-xl group-hover:opacity-80 transform duration-500">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime, beatae!
</p>
</div>
</article>
<article class="mx-auto max-w-sm shadow-xl bg-cover bg-center min-h-150 transform duration-500 hover:-translate-y-2 cursor-pointer group" style="background-image: url(https://images.pexels.com/photos/3325720/pexels-photo-3325720.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500);">
<div class="bg-black bg-opacity-20 min-h-150 px-10 flex flex-wrap flex-col pt-96 hover:bg-opacity-75 transform duration-300">
<h1 class="text-white text-3xl mb-5 transform translate-y-20 group-hover:translate-y-0 duration-300">
The Illusionist
</h1>
<div class="w-16 h-2 bg-orange-500 rounded-full mb-5 transform translate-y-20 group-hover:translate-y-0 duration-300">
</div>
<p class="opacity-0 text-white text-xl group-hover:opacity-80 transform duration-500">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime, beatae!
</p>
</div>
</article>
<article class="mx-auto max-w-sm shadow-xl bg-cover bg-center min-h-150 transform duration-500 hover:-translate-y-2 cursor-pointer group" style="background-image: url(https://images.pexels.com/photos/3304855/pexels-photo-3304855.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260);">
<div class="bg-black bg-opacity-20 min-h-150 px-10 flex flex-wrap flex-col pt-96 hover:bg-opacity-75 transform duration-300">
<h1 class="text-white text-3xl mb-5 transform translate-y-20 group-hover:translate-y-0 duration-300">
Loneliness Within
</h1>
<div class="w-16 h-2 bg-red-500 rounded-full mb-5 transform translate-y-20 group-hover:translate-y-0 duration-300">
</div>
<p class="opacity-0 text-white text-xl group-hover:opacity-80 transform duration-500">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime, beatae!
</p>
</div>
</article>
</section>
<p class="text-sm leading-relaxed text-gray-400 mt-10 text-center">
Images by: <a target="_blank" href="https://www.pexels.com/@joao-cabral-1723948">João Cabral</a>
</p>
</section>
<section class="container mx-auto p-10 md:py-20 px-5 md:p-10">
<section class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 2xl:grid-cols-4 gap-10">
<article class="mx-auto group w-full shadow-2xl max-w-md pb-8 rounded-b-2xl transform duration-500 hover:-translate-y-2 cursor-pointer">
<section class="content bg-cover bg-center h-64 rounded-2xl" style="background-image: url(https://images.unsplash.com/photo-1476610182048-b716b8518aae?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MzN8fGxhbmRzY2FwZXxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=100);">
<div class="flex items-end w-full h-full bg-black bg-opacity-20 text-white text-sm font-bold p-4 rounded-2xl">
<div class="w-1/2 flex items-center">
<svg class="w-6 h-6 mr-2" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
</svg>
<span>4116</span>
</div>
<div class="w-1/2 flex items-center flex-row-reverse">
<svg class="w-6 h-6 ml-2 place-items-end group-hover:animate-ping absolute " xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
</svg>
<svg class="w-6 h-6 ml-2 place-items-end relative" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
</svg>
<span class="place-items-end">16</span>
</div>
</div>
</section>
<div class="my-5 p-4 flex">
<img class="w-10 h-10 rounded-full " src="https://images.generated.photos/6iXTm1iVJzoRHx2m_uKRp222qguutiVLOUVlTe_l3iA/rs:fit:256:256/Z3M6Ly9nZW5lcmF0/ZWQtcGhvdG9zL3Yz/XzAwMjMwNDYuanBn.jpg" alt="">
<div class="w-full flex justify-end space-x-1">
<img class="w-10 h-10 rounded-md" src="https://images.unsplash.com/photo-1604537466573-5e94508fd243?ixid=MXwxMjA3fDF8MHxzZWFyY2h8MXx8bGFuZHNjYXBlfGVufDB8fDB8&ixlib=rb-1.2.1&auto=format&fit=crop&w=200&h=200&q=100" alt="">
<img class="w-10 h-10 rounded-md" src="https://images.unsplash.com/photo-1472214103451-9374bd1c798e?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTZ8fGxhbmRzY2FwZXxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=200&h=200&q=100" alt="">
<img class="w-10 h-10 rounded-md" src="https://images.unsplash.com/photo-1433838552652-f9a46b332c40?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTJ8fGxhbmRzY2FwZXxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=200&h=200&q=100" alt="">
</div>
</div>
<div class="mt-14 px-4">
<svg class="w-5 h-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="rgba(0,0,0,0.6)">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z" />
</svg>
<h2 class="mt-4 text-base font-medium text-gray-400">Seljalandsfoss Waterfall, Iceland</h2>
<p class="mt-2 text-2xl text-gray-700">This photo was taken by <a class="cursor-pointer hover:underline" target="_blank" href="https://unsplash.com/photos/zNN6ubHmruI">Robert Lukeman</a> </p>
</div>
</article>
<article class="mx-auto group w-full shadow-2xl max-w-md pb-8 rounded-b-2xl transform duration-500 hover:-translate-y-2 cursor-pointer group">
<section class="content bg-cover bg-center h-64 rounded-2xl" style="background-image: url(https://images.unsplash.com/photo-1433838552652-f9a46b332c40?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTJ8fGxhbmRzY2FwZXxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=100);">
<div class="flex items-end w-full h-full bg-black bg-opacity-20 text-white text-sm font-bold p-4 rounded-2xl">
<div class="w-1/2 flex items-center">
<svg class="w-6 h-6 mr-2 " xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
</svg>
<span>11219</span>
</div>
<div class="w-1/2 flex items-center flex-row-reverse">
<svg class="w-6 h-6 ml-2 place-items-end group-hover:animate-ping absolute " xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
</svg>
<svg class="w-6 h-6 ml-2 place-items-end relative" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
</svg>
<span class="place-items-end">98</span>
</div>
</div>
</section>
<div class="my-5 p-4 flex">
<img class="w-10 h-10 rounded-full " src="https://images.generated.photos/YBzd3k0_Ry-XxOVS_wa0Wkxp4Mpk2w1hhRPllYA58yQ/rs:fit:256:256/Z3M6Ly9nZW5lcmF0/ZWQtcGhvdG9zL3Yz/XzAzNDY2MjcuanBn.jpg" alt="">
<div class="w-full flex justify-end space-x-1">
<img class="w-10 h-10 rounded-md" src="https://images.unsplash.com/photo-1604537466573-5e94508fd243?ixid=MXwxMjA3fDF8MHxzZWFyY2h8MXx8bGFuZHNjYXBlfGVufDB8fDB8&ixlib=rb-1.2.1&auto=format&fit=crop&w=200&h=200&q=100" alt="">
<img class="w-10 h-10 rounded-md" src="https://images.unsplash.com/photo-1472214103451-9374bd1c798e?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTZ8fGxhbmRzY2FwZXxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=200&h=200&q=100" alt="">
<img class="w-10 h-10 rounded-md" src="https://images.unsplash.com/photo-1433838552652-f9a46b332c40?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTJ8fGxhbmRzY2FwZXxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=200&h=200&q=100" alt="">
</div>
</div>
<div class="mt-14 px-4">
<svg class="w-5 h-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="rgba(0,0,0,0.6)">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z" />
</svg>
<h2 class="mt-4 text-base font-medium text-gray-400">Cappadocia, Turkey</h2>
<p class="mt-2 text-2xl text-gray-700">This photo was taken by <a class="cursor-pointer hover:underline" target="_blank" href="https://unsplash.com/photos/t7YycgAoVSw">Daniela Cuevas</a></p>
</div>
</article>
<article class="mx-auto group w-full shadow-2xl max-w-md pb-8 rounded-b-2xl transform duration-500 hover:-translate-y-2 cursor-pointer">
<section class="content bg-cover bg-center h-64 rounded-2xl" style="background-image: url(https://images.unsplash.com/photo-1472214103451-9374bd1c798e?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTZ8fGxhbmRzY2FwZXxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=100);">
<div class="flex items-end w-full h-full bg-black bg-opacity-20 text-white text-sm font-bold p-4 rounded-2xl">
<div class="w-1/2 flex items-center">
<svg class="w-6 h-6 mr-2" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
</svg>
<span>27615</span>
</div>
<div class="w-1/2 flex items-center flex-row-reverse">
<svg class="w-6 h-6 ml-2 place-items-end group-hover:animate-ping absolute " xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
</svg>
<svg class="w-6 h-6 ml-2 place-items-end relative" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
</svg>
<span class="place-items-end">217</span>
</div>
</div>
</section>
<div class="my-5 p-4 flex">
<img class="w-10 h-10 rounded-full " src="https://images.generated.photos/y99vaViCjDei2ojQZEUIZkbp2d7FiR_n8alwPHMPSMA/rs:fit:256:256/Z3M6Ly9nZW5lcmF0/ZWQtcGhvdG9zL3Yz/XzAyNDI0MzcuanBn.jpg" alt="">
<div class="w-full flex justify-end space-x-1">
<img class="w-10 h-10 rounded-md" src="https://images.unsplash.com/photo-1604537466573-5e94508fd243?ixid=MXwxMjA3fDF8MHxzZWFyY2h8MXx8bGFuZHNjYXBlfGVufDB8fDB8&ixlib=rb-1.2.1&auto=format&fit=crop&w=200&h=200&q=100" alt="">
<img class="w-10 h-10 rounded-md" src="https://images.unsplash.com/photo-1472214103451-9374bd1c798e?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTZ8fGxhbmRzY2FwZXxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=200&h=200&q=100" alt="">
<img class="w-10 h-10 rounded-md" src="https://images.unsplash.com/photo-1433838552652-f9a46b332c40?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTJ8fGxhbmRzY2FwZXxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=200&h=200&q=100" alt="">
</div>
</div>
<div class="mt-14 px-4">
<svg class="w-5 h-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="rgba(0,0,0,0.6)">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z" />
</svg>
<h2 class="mt-4 text-base font-medium text-gray-400">Skye, United Kingdom</h2>
<p class="mt-2 text-2xl text-gray-700">This photo was taken by <a class="cursor-pointer hover:underline" target="_blank" href="https://unsplash.com/photos/_RBcxo9AU-U">Robert Lukeman</a></p>
</div>
</article>
<article class="mx-auto group w-full shadow-2xl max-w-md pb-8 rounded-b-2xl transform duration-500 hover:-translate-y-2 cursor-pointer">
<section class="content bg-cover bg-center h-64 rounded-2xl" style="background-image: url(https://images.unsplash.com/photo-1532274402911-5a369e4c4bb5?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTh8fGxhbmRzY2FwZXxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=100);">
<div class="flex items-end w-full h-full bg-black bg-opacity-20 text-white text-sm font-bold p-4 rounded-2xl">
<div class="w-1/2 flex items-center">
<svg class="w-6 h-6 mr-2" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
</svg>
<span>15982</span>
</div>
<div class="w-1/2 flex items-center flex-row-reverse">
<svg class="w-6 h-6 ml-2 place-items-end group-hover:animate-ping absolute " xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
</svg>
<svg class="w-6 h-6 ml-2 place-items-end relative" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
</svg>
<span class="place-items-end">106</span>
</div>
</div>
</section>
<div class="my-5 p-4 flex">
<img class="w-10 h-10 rounded-full " src="https://images.generated.photos/dR0k2Wztn0AVEncDXA1tnOmTVMR9-QM7yTWbKSM67KU/rs:fit:256:256/Z3M6Ly9nZW5lcmF0/ZWQtcGhvdG9zL3Yz/XzA5MDc2NDYuanBn.jpg" alt="">
<div class="w-full flex justify-end space-x-1">
<img class="w-10 h-10 rounded-md" src="https://images.unsplash.com/photo-1604537466573-5e94508fd243?ixid=MXwxMjA3fDF8MHxzZWFyY2h8MXx8bGFuZHNjYXBlfGVufDB8fDB8&ixlib=rb-1.2.1&auto=format&fit=crop&w=200&h=200&q=100" alt="">
<img class="w-10 h-10 rounded-md" src="https://images.unsplash.com/photo-1472214103451-9374bd1c798e?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTZ8fGxhbmRzY2FwZXxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=200&h=200&q=100" alt="">
<img class="w-10 h-10 rounded-md" src="https://images.unsplash.com/photo-1433838552652-f9a46b332c40?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTJ8fGxhbmRzY2FwZXxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=200&h=200&q=100" alt="">
</div>
</div>
<div class="mt-14 px-4">
<svg class="w-5 h-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="rgba(0,0,0,0.6)">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z" />
</svg>
<h2 class="mt-4 text-base font-medium text-gray-400">Lake Atitlán, Guatemala</h2>
<p class="mt-2 text-2xl text-gray-700">This photo was taken by <a class="cursor-pointer hover:underline" target="_blank" href="https://unsplash.com/photos/K2s_YE031CA">Mark Hurpur</a></p>
</div>
</article>
</section>
<p class="text-sm leading-relaxed text-gray-400 mt-10 text-center">
Design Inspiration: <a target="_blank" href="https://dribbble.com/shots/8157859-Travel-App">https://dribbble.com/shots/8157859-Travel-App</a>
</p>
</section>
<section class="container mx-auto p-10 md:py-20 px-5 md:p-10 md:px-0">
<section class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 2xl:grid-cols-4 gap-10">
<article class="mx-auto pb-5 max-w-sm transform duration-500 hover:-translate-y-1 cursor-pointer group">
<div class="max-h-125 overflow-hidden">
<img class="transform duration-300 group-hover:scale-110" src="https://images.unsplash.com/photo-1615319532762-b4ccc69e5abf?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTA3fHxsYW5kc2NhcGV8ZW58MHx8MHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=100" alt="">
</div>
<div class="flex justify-between my-5 ">
<div class="text-orange-500 text-base font-semibold">California</div>
<div class="text-base text-right"><span class="font-bold">87</span>/Day</div>
</div>
<h2 class="font-bold text-2xl">Photo by <a target="_blank" href="https://unsplash.com/photos/YgCmUdaFkHo">Drew
Dao</a> </h2>
<div class="flex justify-between items-center mt-3 ">
<div class="text-base uppercase font-semibold text-gray-500">15 Days Tour</div>
<div class="text-base text-right">
<div class="flex">
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-gray-300" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
</div>
</div>
</div>
</article>
<article class="mx-auto pb-5 max-w-sm transform duration-500 hover:-translate-y-1 cursor-pointer group">
<div class="max-h-125 overflow-hidden">
<img class="transform duration-300 group-hover:scale-110" src="https://images.unsplash.com/photo-1562981943-dda9d14477f0?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTE4fHxsYW5kc2NhcGV8ZW58MHx8MHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=100" alt="">
</div>
<div class="flex justify-between my-5 ">
<div class="text-orange-500 text-base font-semibold">San Diego, California</div>
<div class="text-base text-right"><span class="font-bold">75</span>/Day</div>
</div>
<h2 class="font-bold text-2xl">Photo by <a target="_blank" href="https://unsplash.com/photos/xYdxw6C3tSA">Trent
Haaland</a></h2>
<div class="flex justify-between items-center mt-3 ">
<div class="text-base uppercase font-semibold text-gray-500">21 Days Tour</div>
<div class="text-base text-right">
<div class="flex">
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-gray-300" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
</div>
</div>
</div>
</article>
<article class="mx-auto pb-5 max-w-sm transform duration-500 hover:-translate-y-1 cursor-pointer group">
<div class="max-h-125 overflow-hidden">
<img class="transform duration-300 group-hover:scale-110" src="https://images.unsplash.com/photo-1475066392170-59d55d96fe51?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=934&q=100" alt="">
</div>
<div class="flex justify-between my-5 ">
<div class="text-orange-500 text-base font-semibold">Aksla Viewpoint, Alesund, Norway</div>
<div class="text-base text-right"><span class="font-bold">176</span>/Day</div>
</div>
<h2 class="font-bold text-2xl">Photo by <a target="_blank" href="https://unsplash.com/photos/3-MftKobVtg">Jarand
K. Løkeland</a></h2>
<div class="flex justify-between items-center mt-3 ">
<div class="text-base uppercase font-semibold text-gray-500">24 Days Tour</div>
<div class="text-base text-right">
<div class="flex">
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
</div>
</div>
</div>
</article>
<article class="mx-auto pb-5 max-w-sm transform duration-500 hover:-translate-y-1 cursor-pointer group">
<div class="max-h-125 overflow-hidden">
<img class="transform duration-300 group-hover:scale-110" src="https://images.unsplash.com/photo-1459787915554-b34915863013?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=887&q=100" alt="">
</div>
<div class="flex justify-between my-5 ">
<div class="text-orange-500 text-base font-semibold">Dubai, United Arab Emirates</div>
<div class="text-base text-right"><span class="font-bold">120</span>/Day</div>
</div>
<h2 class="font-bold text-2xl">Photo by <a target="_blank" href="https://unsplash.com/photos/CwJb7ly-iqc">Ashim
D'Silva</a></h2>
<div class="flex justify-between items-center mt-3 ">
<div class="text-base uppercase font-semibold text-gray-500">10 Days Tour</div>
<div class="text-base text-right">
<div class="flex">
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-orange-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-gray-300" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
<svg class="w-4 h-4 mx-px fill-current text-gray-300" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<path
d="M6.43 12l-2.36 1.64a1 1 0 0 1-1.53-1.11l.83-2.75a1 1 0 0 0-.35-1.09L.73 6.96a1 1 0 0 1 .59-1.8l2.87-.06a1 1 0 0 0 .92-.67l.95-2.71a1 1 0 0 1 1.88 0l.95 2.71c.13.4.5.66.92.67l2.87.06a1 1 0 0 1 .59 1.8l-2.3 1.73a1 1 0 0 0-.34 1.09l.83 2.75a1 1 0 0 1-1.53 1.1L7.57 12a1 1 0 0 0-1.14 0z" />
</svg>
</div>
</div>
</div>
</article>
</section>
<p class="text-sm leading-relaxed text-gray-400 mt-10 text-center">
Design Inspiration: <a target="_blank" href="https://dribbble.com/shots/5167257-Travel-Category-Page">Travel
Category Page by Faria Anzum</a>
</p>
</section>
<section class="container mx-auto p-10 md:py-20 px-0 md:p-10 md:px-0">
<section class="p-5 md:p-0 grid grid-cols-1 sm:grid-cols-2 md:grid-cols-2 xl:grid-cols-3 2xl:grid-cols-4 gap-10">
<article class="p-10 min-h-116 max-w-xl w-full bg-gray-200 rounded-xl text-gray-600 transform duration-500 hover:-translate-y-1 cursor-pointer">
<h1 class="mt-5 text-2xl md:text-3xl font-light leading-snug min-h-33">One small step for man one giant leap for mankind
</h1>
<div class="mt-20">
<span class="text-xl">Moonlanding - </span>
<span class="font-bold text-xl">Neil Armstrong</span>
</div>
<div class="mt-16 flex justify-between">
<span class="p-3 pl-0 font-bold">Story</span>
<span class="p-3 border-2 border-gray-500 rounded-md text-base hover:bg-black hover:border-gray-200 cursor-pointer hover:text-white ">Paid
Membership</span>
</div>
</article>
<article class="min-h-116 bg-orange-600 max-w-xl w-full rounded-xl text-gray-100 bg-cover bg-center transform duration-500 hover:-translate-y-1 cursor-pointer" style="background-image: url(https://images.unsplash.com/photo-1614527333177-d27e9e29ff98?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=950&q=80);">
<div class="bg-black bg-opacity-60 p-10 rounded-xl h-full">
<h1 class="mt-5 text-3xl text-gray-100 leading-snug min-h-33">One small step for man one giant leap for mankind
</h1>
<div class="mt-20">
<span class="text-xl">Moonlanding - </span>
<span class="font-bold text-xl">Neil Armstrong</span>
</div>
<div class="mt-16 flex justify-between ">
<span class="p-3 pl-0 font-bold">Travel</span>
<span class="p-3 border-2 border-gray-200 rounded-md text-base hover:bg-gray-200 hover:border-gray-200 cursor-pointer hover:text-black ">Paid
Membership</span>
</div>
</div>
</article>
<article class="p-10 min-h-116 max-w-3xl w-full bg-purple-600 rounded-xl text-gray-100 xl:col-span-2 transform duration-500 hover:-translate-y-1 cursor-pointer">
<h1 class="mt-5 text-5xl font-light text-gray-100 leading-snug min-h-33">One small step for man one giant leap for mankind
</h1>
<div class="mt-20">
<span class="text-xl">Moonlanding - </span>
<span class="font-bold text-xl">Neil Armstrong</span>
</div>
<div class="mt-16 flex justify-between ">
<span class="p-3 pl-0 font-bold">Quotes</span>
<span class="p-3 border-2 border-gray-200 rounded-md text-base hover:bg-gray-200 hover:border-gray-200 cursor-pointer hover:text-black ">Paid
Membership</span>
</div>
</article>
<article class="p-10 min-h-116 max-w-3xl w-full rounded-xl text-gray-100 xl:col-span-2 bg-center bg-cover transform duration-500 hover:-translate-y-1 cursor-pointer" style="background-image: url(https://images.unsplash.com/photo-1559827291-72ee739d0d9a?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80);">
<h1 class="mt-5 text-4xl text-gray-100 leading-snug min-h-33">One small step for man one giant leap for mankind
</h1>
<div class="mt-20">
<span class="text-xl">Moonlanding - </span>
<span class="font-bold text-xl">Neil Armstrong</span>
</div>
<div class="mt-16 flex justify-between ">
<span class="p-3 pl-0 font-bold">Travel Guide</span>
<span class="p-3 px-5 bg-gray-200 rounded-md text-base hover:bg-orange-600 cursor-pointer hover:text-white text-black ">Paid
Membership</span>
</div>
</article>
<article class="p-10 min-h-116 max-w-xl w-full bg-cyan-600 rounded-xl text-gray-100 transform duration-500 hover:-translate-y-1 cursor-pointer">
<h1 class="mt-5 text-3xl text-gray-100 leading-snug min-h-33">One small step for man one giant leap for mankind
</h1>
<div class="mt-20">
<span class="text-xl">Moonlanding - </span>
<span class="font-bold text-xl">Neil Armstrong</span>
</div>
<div class="mt-16 flex justify-between ">
<span class="p-3 pl-0">Story</span>
<span class="p-3 border-2 border-gray-200 rounded-md text-base hover:bg-gray-200 hover:border-gray-200 cursor-pointer hover:text-black ">Paid
Membership</span>
</div>
</article>
<article class="flex flex-col-reverse p-10 min-h-116 max-w-xl w-full bg-orange-600 rounded-xl text-gray-100 transform duration-500 hover:-translate-y-1 cursor-pointer">
<h1 class="mt-10 text-3xl text-gray-100 leading-snug min-h-33">One small step for man one giant leap for mankind
</h1>
<div class="mt-24">
<span class="text-xl">Moonlanding - </span>
<span class="font-bold text-xl">Neil Armstrong</span>
</div>
<div class="mt-4 flex justify-between ">
<span class="p-3 pl-0">Story</span>
<span class="p-3 border-2 border-gray-200 rounded-md text-base hover:bg-gray-200 hover:border-gray-200 cursor-pointer hover:text-black ">Paid
Membership</span>
</div>
</article>
</section>
</section>
<section class="container mx-auto p-10 md:py-20 px-0 md:p-10 md:px-0">
<section class="p-5 md:p-0 grid grid-cols-1 sm:grid-cols-1 md:grid-cols-2 xl:grid-cols-3 2xl:grid-cols-4 gap-10 items-start ">
<article class="relative shadow-2xl max-w-lg w-full transform duration-500 hover:-translate-y-2 cursor-pointer rounded-md">
<div class="flex absolute right-0 top-0 w-10 h-10 bg-blue-600 text-gray-100">
<span class="mx-auto my-auto">
<img class="w-5 h-5" src="svgs/right-arrow.svg">
</span>
</div>
<div class="bg-no-repeat bg-center overflow-hidden mt-10 min-h-96" style="background-image: url('svgs/blob-blue.svg');">
<img class="mx-auto p-5" src="https://www.dropbox.com/s/mlor33hzk73rh0c/x14423.png?dl=1" alt="">
</div>
<div class="p-8 mb-10 mt-2">
<p class="text-xl text-gray-500">03.</p>
<h2 class="text-3xl mt-2">Beautiful Wooden Chair</h2>
</div>
</article>
<article class="relative shadow-2xl max-w-lg w-full transform duration-500 hover:-translate-y-2 cursor-pointer rounded-md">
<div class="flex absolute left-0 top-0 w-10 h-10 bg-orange-600 text-gray-100">
<span class="mx-auto my-auto">
<img class="w-5 h-5" src="svgs/left-arrow.svg">
</span>
</div>
<div class="bg-no-repeat bg-center overflow-hidden mt-10 min-h-96" style="background-image: url('svgs/blob-blue.svg');">
<img class="mx-auto p-5" src="https://www.dropbox.com/s/1fav310i2eqkdz8/tool2.png?dl=1" alt="">
</div>
<div class="p-8 mb-10 mt-2">
<p class="text-xl text-gray-500">04.</p>
<h2 class="text-3xl mt-2">Multipurpose Wooden Tool</h2>
</div>
</article>
<article class="relative shadow-2xl max-w-lg w-full transform duration-500 hover:-translate-y-2 cursor-pointer rounded-md">
<div class="flex absolute right-0 -mt-10 top-1/2 w-10 h-10 bg-blue-600 text-gray-100">
<span class="mx-auto my-auto">
<img class="w-5 h-5" src="svgs/right-arrow.svg">
</span>
</div>
<div class="bg-no-repeat bg-center overflow-hidden mt-10 min-h-96" style="background-image: url('svgs/blob-blue.svg');">
<img class="mx-auto p-5" src="https://www.dropbox.com/s/8ymeus1n9k9bhpd/y16625.png?dl=1" alt="">
</div>
<div class="p-8 mb-10 mt-2">
<p class="text-xl text-gray-500">07.</p>
<h2 class="text-3xl mt-2">Comfortable Cushion Chair</h2>
<p class="text-xbase mt-5 text-gray-400 leading-relaxed">Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo aliquam nam inventore ut tempora alias?</p>
</div>
</article>
<article class="relative shadow-2xl max-w-lg w-full transform duration-500 hover:-translate-y-2 cursor-pointer rounded-md">
<div class="flex absolute left-0 -mt-10 top-1/2 w-10 h-10 bg-orange-600 text-gray-100">
<span class="mx-auto my-auto">
<img class="w-5 h-5" src="svgs/left-arrow.svg">
</span>
</div>
<div class="bg-no-repeat bg-center overflow-hidden mt-10 min-h-96" style="background-image: url('svgs/blob-blue.svg' );">
<img class="mx-auto p-5" src="https://www.dropbox.com/s/ykdro56f2qltxys/hh2774663-87776.png?dl=1" alt="">
</div>
<div class="p-8 mb-10 mt-2">
<p class="text-xl text-gray-500">16.</p>
<h2 class="text-3xl mt-2">Multipurpose Wooden Trolly</h2>
<p class="text-xbase mt-5 text-gray-400 leading-relaxed">Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo aliquam nam inventore ut tempora alias?</p>
</div>
</article>
</section>
</section>
<section class="container mx-auto p-10 px-0 md:p-10 md:py-32 md:px-0">
<section class="p-5 md:p-0 xl:grid xl:grid-cols-12 xl:grid-rows-6 xl:h-200">
<section class="row-start-1 row-end-5 col-start-1 col-end-9 bg-orange-100">
<article class="p-10 flex justify-between items-center h-full">
<div class="space-y-5">
<h2 class="text-3xl md:text-5xl max-w-md">Comfortable Cusion Chair</h2>
<h3 class="text-xl">$64</h3>
<button class="p-2 px-6 bg-red-500 text-white rounded-md hover:bg-red-600">Add To Cart</button>
</div>
<div>
<img class="h-auto w-96" src="https://www.dropbox.com/s/8ymeus1n9k9bhpd/y16625.png?dl=1" alt="">
</div>
</article>
</section>
<section class="row-start-5 row-end-7 col-start-1 col-end-4 bg-purple-300">
<article class="flex items-center h-full bg-green-900 p-6">
<div>
<h2 class="uppercase text-xm font-semibold text-gray-300">Featured</h2>
<p class=" text-3xl font-xl text-white mt-2">Product cards for ecommerce websites</p>
</div>
</article>
</section>
<section class="row-start-5 row-end-7 col-start-4 col-end-9 bg-gray-200">
<article class="p-10 flex justify-between items-center h-full">