-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1086 lines (1008 loc) · 55.2 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/kenwheeler/slick@1.8.1/slick/slick-theme.css"/>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/charts.css/dist/charts.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700|Open+Sans:400,700" rel="stylesheet">
<link rel="stylesheet" href="https://demos.creative-tim.com/notus-js/assets/styles/tailwind.css">
<link rel="stylesheet" href="https://demos.creative-tim.com/notus-js/assets/vendor/@fortawesome/fontawesome-free/css/all.min.css">
</head>
<body>
<!-- Nav-var -->
<nav>
<div class="nav-bar">
<i class='bx bx-menu sidebarOpen' ></i>
<span class="logo navLogo"><a class="dealership" href="#">Car Dealership</a></span>
<div class="menu">
<div class="logo-toggle">
<span class="logo"><a href="#">Car Dealership</a></span>
<i class='bx bx-x siderbarClose'></i>
</div>
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="#">Cars</a></li>
<li><a href="#">Our Founder</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Me</a></li>
</ul>
</div>
<div class="darkLight-searchBox">
<div class="dark-light">
<i class='bx bx-moon moon'></i>
<i class='bx bx-sun sun'></i>
</div>
<div class="searchBox">
<div class="searchToggle">
<i class='bx bx-x cancel'></i>
<i class='bx bx-search search'></i>
</div>
<div class="search-field">
<input type="text" placeholder="Search...">
<i class='bx bx-search'></i>
</div>
</div>
</nav>
<!--Landing Page -->
<div class="container-1">
<div class="info">
<div class="wrapper">
<h2 class="bg" id="animation-h2">Find Car For Sale and Rent Near For You</h2>
<svg width="0" height="0">
<filter id="f" x="-50%" y="-200%" width="200%" height="500%" primitiveUnits="objectBoundingBox">
<feGaussianBlur stdDeviation=".025 .2"></feGaussianBlur>
<feColorMatrix type="saturate" values="1.3"></feColorMatrix>
<feBlend in="SourceGraphic"></feBlend>
</filter>
</svg>
<h1 class="fg animation-h1">Find Your Perfect Car</h1>
</div>
<h3 class="info-h3">
<div class="searchBoxs-2">
<input class="searchInputs-2" type="texts" name="" placeholder="Search something">
<button class="searchButtons-2" href="#">
<i style="font-size: 20px; font-weight: 900;" class="bi bi-search"></i>
</button>
</div>
</h3>
<h4 class="info-h4">Or Browse Featured Model</h4>
<div class="list-car">
<button class="btn-1 btn-animation"><a href="">LUXURY CAR</a></button>
<button class="btn-donate" id="btn-animation"><a href="">ELECTRIC CAR</a></button>
<button class="shadow__btn btn-animation-3"><a href="">SPORT CAR</a></button>
</div>
</div>
</div>
</div>
<div class="seperations"></div>
<!-- Slider Tool -->
<div class="slider" id="slider" style="--img-prev:url(https://lh3.googleusercontent.com/aC9nyW5dhaYFmWD8fcf8DApjpH08eHEkbCHqmUPHRQ5T3jK-QyNKZYVMehmrvyPdEA_KxWvgZ3_kyOOYOAv99Ow3UoKSvEloleVKGSfLOwOyDV3Q6Dwi1G-NYoa9-t_ofmmskE6BYnVIOnIz2HWlMcijzIEwvKAL_R4z63DaLgG0z_OcGiSQHunwGAPXrBQUv42ZXuIMODq4zxDHczSxJ72b0-_udtdQK3JuT2X8nXCwFoF7GxmOpzXS0H5f50DuCbXoXcx-O7bgBMCXZdMpTxB27-wdXeLmxpYUySXgjSN2NAKmK16DmGLYvw5tMlrqwb8h4MJEEbXjP1pjPxXsahb7UZseEGyn80uLjATANJvusyJWCtzkkxYXPz-yI1rDvfEJKe2eyA-5AvFlzFBSwBMASn8f7mXinUrXMMREkJQjoi89NfZ91G7253OEVQOqcWxddiYtcHCO5v6Pl3QfV2SUTWXgggscDSY2ezjSPpYERNTXnIM_aCyWmIG7ybrfqOB0eVYBAgynyuPVbjd4KuZWZq2Dfu33HX1RuPKglbOuZGD1QbpJnruvUVkAmjDXI40ENN7X=w1600-h766);">
<div class="slider__content" id="slider-content">
<div class="slider__images">
<div class="slider__images-item slider__images-item--active" data-id="1"><img src="slider.pics/hero1.jpg.jpg"/></div>
<div class="slider__images-item" data-id="2"><img src="slider.pics/hero2.jpg.webp"/></div>
<div class="slider__images-item" data-id="3"><img src="slider.pics/hero3.jpg.jpg"/></div>
<div class="slider__images-item" data-id="4"><img src="slider.pics/hero4.jpg.webp"/></div>
<div class="slider__images-item" data-id="5"><img src="slider.pics/hero5.jpg.jpg"/></div>
<div class="slider__images-item" data-id="6"><img src="slider.pics/hero6.jpg.jpg"/></div>
<div class="slider__images-item" data-id="7"><img src="slider.pics/hero7.jpg.jpg"/></div>
</div>
<div class="slider__text">
<div class="slider__text-item slider__text-item--active" data-id="1">
<div class="slider__text-item-head">
<h3>Bugatti Chiron</h3>
</div>
<div class="slider__text-item-info">
<p>“Starting From $3,000,000”</p>
</div>
</div>
<div class="slider__text-item" data-id="2">
<div class="slider__text-item-head">
<h3>La Ferrari</h3>
</div>
<div class="slider__text-item-info">
<p>“Starting From $3,055,417”</p>
</div>
</div>
<div class="slider__text-item" data-id="3">
<div class="slider__text-item-head">
<h3>Mclaren 720s</h3>
</div>
<div class="slider__text-item-info">
<p>“Starting From $310,000</p>
</div>
</div>
<div class="slider__text-item" data-id="4">
<div class="slider__text-item-head">
<h3>Tesla</h3>
</div>
<div class="slider__text-item-info">
<p>“Starting From $40,000”</p>
</div>
</div>
<div class="slider__text-item" data-id="5">
<div class="slider__text-item-head">
<h3>BMW M5</h3>
</div>
<div class="slider__text-item-info">
<p>“Starting From $117,000”</p>
</div>
</div>
<div class="slider__text-item" data-id="6">
<div class="slider__text-item-head">
<h3>Ford Mustang</h3>
</div>
<div class="slider__text-item-info">
<p>“Starting From $32,000”</p>
</div>
</div>
<div class="slider__text-item" data-id="7">
<div class="slider__text-item-head">
<h3>Audi R8</h3>
</div>
<div class="slider__text-item-info">
<p>“Starting From $225,000”</p>
</div>
</div>
</div>
</div>
<div class="slider__nav">
<div class="slider__nav-arrows">
<div class="slider__nav-arrow slider__nav-arrow--left" id="left">to left</div>
<div class="slider__nav-arrow slider__nav-arrow--right" id="right">to right</div>
</div>
<div class="slider__nav-dots" id="slider-dots">
<div class="slider__nav-dot slider__nav-dot--active" data-id="1"></div>
<div class="slider__nav-dot" data-id="2"></div>
<div class="slider__nav-dot" data-id="3"></div>
<div class="slider__nav-dot" data-id="4"></div>
<div class="slider__nav-dot" data-id="5"></div>
<div class="slider__nav-dot" data-id="6"></div>
<div class="slider__nav-dot" data-id="7"></div>
</div>
</div>
</div>
<!-- Landing Page-2 -->
<div class="seperations"></div>
<div class="about-car">
<div class="about-cars">
<h1 class="animation-left">Online, In Person Everywhere</h1>
<p class="animation-left">Choose from thousands of vehicles from multiple brands and buy online with Click & Drive, or visit us at one of our dealerships today.</p>
<button class="about-car-btn animation-left" >
<span class="text">Get Started</span>
</button>
</div>
<div class="about-car-image animation-right">
<img src="landingpage2.pic/pic.jpg.jpg" alt="Image" width="660px" height="600px">
</div>
</div>
</div>
<!-- Comapany Choose -->\
<div class="seperation"></div>
<div class="car-rent-buy">
<div class="card-1 animation-left">
<div class="content-1">
<p class="heading-1">Looking For a Car</p>
<p class="para-1">
Our cars are delivered fully-registered with all requirements completed. We’ll deliver your car wherever you are
</p>
<button class="btn">Read more</button>
</div>
</div>
<div class="card-1 animation-right">
<div class="content-1">
<p class="heading-1">Want To Selling a Car</p>
<p class="para-1">
Receive the absolute best value for your trade-in vehicle. We even handle all paperwork. Schedule appointment!
</p>
<button class="btn">Read more</button>
</div>
</div>
</div>
<div class="seperation"></div>
<!-- Car Comapany -->
<h1 class="company-header">Browse By Brands</h1>
<div class="company-chioces">
<div class="brands animation-left"><img src="logo.png/logo1.png.png" alt="Logo" width="30px" height="30px">Lamborgini</div>
<div class="brands animation-right"><img src="logo.png/logo2.png.png" alt="Logo" width="30px" height="30px">Ferrari</div>
<div class="brands animation-left"><img src="logo.png/logo3.png.png" alt="Logo" width="70px" height="30px">Pagani</div>
<div class="brands animation-right"><img src="logo.png/logo4.png.png" alt="Logo" width="30px" height="30px">BMW</div>
<div class="brands animation-left"><img src="logo.png/logo5.png.png" alt="Logo" width="35px" height="35px">Mercedes</div>
<div class="brands animation-right"><img src="logo.png/logo6.png.png" alt="Logo" width="50px" height="30px">Mclaren</div>
<div class="brands animation-left"><img src="logo.png/logo7.png.png" alt="Logo" width="40px" height="30px">Buggatti</div>
<div class="brands animation-right"><img src="logo.png/logo8.png.png" alt="Logo" width="30px" height="30px">Rolls Royes</div>
</div>
<!-- Car collection -->
<div class="seperation"></div>
<h1 class="company-header">Realted Listing</h1>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6 w-full">
<!-- 1st Page -->
<div class="relative mx-auto w-full animation-left">
<a href="#" class="relative inline-block duration-300 ease-in-out transition-transform transform hover:-translate-y-2 w-full">
<div class="shadow p-4 rounded-lg bg-white">
<div class="flex justify-center relative rounded-lg overflow-hidden h-52">
<div class="transition-transform duration-500 transform ease-in-out hover:scale-110 w-full">
<div class="absolute inset-0 bg-black opacity-10"></div>
<img src="car.collection/1.car.collection.jpg" alt="">
</div>
<div class="absolute flex justify-center bottom-0 mb-3">
</div>
<span class="absolute top-0 left-0 inline-flex mt-3 ml-3 px-3 py-2 rounded-lg z-10 bg-red-500 text-sm font-medium text-white select-none">
Featured
</span>
</div>
<div class="mt-4">
<h2 class="font-medium text-base md:text-lg text-gray-800 line-clamp-1" title="New York">
United States
</h2>
<p class="mt-2 text-sm text-gray-800 line-clamp-1" title="New York, NY 10004, United States">
Central Park, New York
</p>
</div>
<div class="grid grid-cols-2 grid-rows-2 gap-4 mt-8">
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<svg class="inline-block w-5 h-5 xl:w-4 xl:h-4 mr-3 fill-current text-gray-800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M570.53,242,512,190.75V48a16,16,0,0,0-16-16H400a16,16,0,0,0-16,16V78.75L298.53,4a16,16,0,0,0-21.06,0L5.47,242a16,16,0,0,0,21.07,24.09L64,233.27V464a48.05,48.05,0,0,0,48,48H464a48.05,48.05,0,0,0,48-48V233.27l37.46,32.79A16,16,0,0,0,570.53,242ZM480,464a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V205.27l192-168,192,168Zm0-301.25-64-56V64h64ZM208,218.67V325.34A26.75,26.75,0,0,0,234.66,352H341.3A26.76,26.76,0,0,0,368,325.34V218.67A26.75,26.75,0,0,0,341.3,192H234.66A26.74,26.74,0,0,0,208,218.67ZM240,224h96v96H240Z"></path></svg>
<span class="mt-2 xl:mt-0">
A-1 Street 1
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/engine.png" alt="engine"/>
<span class="mt-2 xl:mt-0">
Automatic
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/speedometer.png" alt="speedometer"/>
<span class="mt-2 xl:mt-0">
1226 Km
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="25" height="25" src="https://img.icons8.com/ios/50/car--v1.png" alt="car--v1"/>
<span class="mt-2 xl:mt-0">
2023
</span>
</p>
</div>
<div class="grid grid-cols-2 mt-8">
<div class="flex items-center">
<div class="relative">
<div class="rounded-full w-6 h-6 md:w-8 md:h-8 bg-gray-200"></div>
<span class="absolute top-0 right-0 inline-block w-3 h-3 bg-primary-red rounded-full"></span>
</div>
<p class="ml-2 text-gray-800 line-clamp-1">
Mickel
</p>
</div>
<div class="flex justify-end">
<p class="inline-block font-semibold text-primary whitespace-nowrap leading-tight rounded-xl">
<span class="text-lg">4,000,000</span>$
</p>
</div>
</div>
</div>
</a>
</div>
<!-- 2nd Page -->
<div class="relative mx-auto w-full animation-right">
<a href="#" class="relative inline-block duration-300 ease-in-out transition-transform transform hover:-translate-y-2 w-full">
<div class="shadow p-4 rounded-lg bg-white">
<div class="flex justify-center relative rounded-lg overflow-hidden h-52">
<div class="transition-transform duration-500 transform ease-in-out hover:scale-110 w-full">
<div class="absolute inset-0 bg-black opacity-10"></div>
<img src="car.collection/2.car.collection.jpg" alt="">
</div>
<div class="absolute flex justify-center bottom-0 mb-3">
</div>
<span class="absolute top-0 left-0 inline-flex mt-3 ml-3 px-3 py-2 rounded-lg z-10 bg-red-500 text-sm font-medium text-white select-none">
Featured
</span>
</div>
<div class="mt-4">
<h2 class="font-medium text-base md:text-lg text-gray-800 line-clamp-1" title="New York">
Italy
</h2>
<p class="mt-2 text-sm text-gray-800 line-clamp-1" title="New York, NY 10004, United States">
Garbatella, Rome
</p>
</div>
<div class="grid grid-cols-2 grid-rows-2 gap-4 mt-8">
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<svg class="inline-block w-5 h-5 xl:w-4 xl:h-4 mr-3 fill-current text-gray-800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M570.53,242,512,190.75V48a16,16,0,0,0-16-16H400a16,16,0,0,0-16,16V78.75L298.53,4a16,16,0,0,0-21.06,0L5.47,242a16,16,0,0,0,21.07,24.09L64,233.27V464a48.05,48.05,0,0,0,48,48H464a48.05,48.05,0,0,0,48-48V233.27l37.46,32.79A16,16,0,0,0,570.53,242ZM480,464a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V205.27l192-168,192,168Zm0-301.25-64-56V64h64ZM208,218.67V325.34A26.75,26.75,0,0,0,234.66,352H341.3A26.76,26.76,0,0,0,368,325.34V218.67A26.75,26.75,0,0,0,341.3,192H234.66A26.74,26.74,0,0,0,208,218.67ZM240,224h96v96H240Z"></path></svg>
<span class="mt-2 xl:mt-0">
Z-17 Street 25
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/engine.png" alt="engine"/>
<span class="mt-2 xl:mt-0">
Automatic
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/speedometer.png" alt="speedometer"/>
<span class="mt-2 xl:mt-0">
13251 Km
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="25" height="25" src="https://img.icons8.com/ios/50/car--v1.png" alt="car--v1"/>
<span class="mt-2 xl:mt-0">
2016
</span>
</p>
</div>
<div class="grid grid-cols-2 mt-8">
<div class="flex items-center">
<div class="relative">
<div class="rounded-full w-6 h-6 md:w-8 md:h-8 bg-gray-200"></div>
<span class="absolute top-0 right-0 inline-block w-3 h-3 bg-primary-red rounded-full"></span>
</div>
<p class="ml-2 text-gray-800 line-clamp-1">
Lora
</p>
</div>
<div class="flex justify-end">
<p class="inline-block font-semibold text-primary whitespace-nowrap leading-tight rounded-xl">
<span class="text-lg">1,500,000</span>$
</p>
</div>
</div>
</div>
</a>
</div>
<!-- Page 3 -->
<div class="relative mx-auto w-full animation-left">
<a href="#" class="relative inline-block duration-300 ease-in-out transition-transform transform hover:-translate-y-2 w-full">
<div class="shadow p-4 rounded-lg bg-white">
<div class="flex justify-center relative rounded-lg overflow-hidden h-52">
<div class="transition-transform duration-500 transform ease-in-out hover:scale-110 w-full">
<div class="absolute inset-0 bg-black opacity-10"></div>
<img src="car.collection/3.car.collection.jpg" alt="">
</div>
<div class="absolute flex justify-center bottom-0 mb-3">
</div>
<span class="absolute top-0 left-0 inline-flex mt-3 ml-3 px-3 py-2 rounded-lg z-10 bg-red-500 text-sm font-medium text-white select-none">
Featured
</span>
</div>
<div class="mt-4">
<h2 class="font-medium text-base md:text-lg text-gray-800 line-clamp-1" title="New York">
Pakistan
</h2>
<p class="mt-2 text-sm text-gray-800 line-clamp-1" title="New York, NY 10004, United States">
Defence Phase-2, Karachi
</p>
</div>
<div class="grid grid-cols-2 grid-rows-2 gap-4 mt-8">
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<svg class="inline-block w-5 h-5 xl:w-4 xl:h-4 mr-3 fill-current text-gray-800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M570.53,242,512,190.75V48a16,16,0,0,0-16-16H400a16,16,0,0,0-16,16V78.75L298.53,4a16,16,0,0,0-21.06,0L5.47,242a16,16,0,0,0,21.07,24.09L64,233.27V464a48.05,48.05,0,0,0,48,48H464a48.05,48.05,0,0,0,48-48V233.27l37.46,32.79A16,16,0,0,0,570.53,242ZM480,464a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V205.27l192-168,192,168Zm0-301.25-64-56V64h64ZM208,218.67V325.34A26.75,26.75,0,0,0,234.66,352H341.3A26.76,26.76,0,0,0,368,325.34V218.67A26.75,26.75,0,0,0,341.3,192H234.66A26.74,26.74,0,0,0,208,218.67ZM240,224h96v96H240Z"></path></svg>
<span class="mt-2 xl:mt-0">
B-17 Street 15
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/engine.png" alt="engine"/>
<span class="mt-2 xl:mt-0">
Automatic
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/speedometer.png" alt="speedometer"/>
<span class="mt-2 xl:mt-0">
3500 Km
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="25" height="25" src="https://img.icons8.com/ios/50/car--v1.png" alt="car--v1"/>
<span class="mt-2 xl:mt-0">
2022
</span>
</p>
</div>
<div class="grid grid-cols-2 mt-8">
<div class="flex items-center">
<div class="relative">
<div class="rounded-full w-6 h-6 md:w-8 md:h-8 bg-gray-200"></div>
<span class="absolute top-0 right-0 inline-block w-3 h-3 bg-primary-red rounded-full"></span>
</div>
<p class="ml-2 text-gray-800 line-clamp-1">
Fahad
</p>
</div>
<div class="flex justify-end">
<p class="inline-block font-semibold text-primary whitespace-nowrap leading-tight rounded-xl">
<span class="text-lg">90,000</span>$
</p>
</div>
</div>
</div>
</a>
</div>
<!-- Page 4 -->
<div class="relative mx-auto w-full animation-right">
<a href="#" class="relative inline-block duration-300 ease-in-out transition-transform transform hover:-translate-y-2 w-full">
<div class="shadow p-4 rounded-lg bg-white">
<div class="flex justify-center relative rounded-lg overflow-hidden h-52">
<div class="transition-transform duration-500 transform ease-in-out hover:scale-110 w-full">
<div class="absolute inset-0 bg-black opacity-10"></div>
<img src="car.collection/4.car.collection.jpg" alt="">
</div>
<div class="absolute flex justify-center bottom-0 mb-3">
</div>
<span class="absolute top-0 left-0 inline-flex mt-3 ml-3 px-3 py-2 rounded-lg z-10 bg-red-500 text-sm font-medium text-white select-none">
Featured
</span>
</div>
<div class="mt-4">
<h2 class="font-medium text-base md:text-lg text-gray-800 line-clamp-1" title="New York">
UAE
</h2>
<p class="mt-2 text-sm text-gray-800 line-clamp-1" title="New York, NY 10004, United States">
Ajamn, Dubai
</p>
</div>
<div class="grid grid-cols-2 grid-rows-2 gap-4 mt-8">
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<svg class="inline-block w-5 h-5 xl:w-4 xl:h-4 mr-3 fill-current text-gray-800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M570.53,242,512,190.75V48a16,16,0,0,0-16-16H400a16,16,0,0,0-16,16V78.75L298.53,4a16,16,0,0,0-21.06,0L5.47,242a16,16,0,0,0,21.07,24.09L64,233.27V464a48.05,48.05,0,0,0,48,48H464a48.05,48.05,0,0,0,48-48V233.27l37.46,32.79A16,16,0,0,0,570.53,242ZM480,464a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V205.27l192-168,192,168Zm0-301.25-64-56V64h64ZM208,218.67V325.34A26.75,26.75,0,0,0,234.66,352H341.3A26.76,26.76,0,0,0,368,325.34V218.67A26.75,26.75,0,0,0,341.3,192H234.66A26.74,26.74,0,0,0,208,218.67ZM240,224h96v96H240Z"></path></svg>
<span class="mt-2 xl:mt-0">
P-17 Street 7
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/engine.png" alt="engine"/>
<span class="mt-2 xl:mt-0">
Automatic
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/speedometer.png" alt="speedometer"/>
<span class="mt-2 xl:mt-0">
8200 Km
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="25" height="25" src="https://img.icons8.com/ios/50/car--v1.png" alt="car--v1"/>
<span class="mt-2 xl:mt-0">
2017
</span>
</p>
</div>
<div class="grid grid-cols-2 mt-8">
<div class="flex items-center">
<div class="relative">
<div class="rounded-full w-6 h-6 md:w-8 md:h-8 bg-gray-200"></div>
<span class="absolute top-0 right-0 inline-block w-3 h-3 bg-primary-red rounded-full"></span>
</div>
<p class="ml-2 text-gray-800 line-clamp-1">
Pitar
</p>
</div>
<div class="flex justify-end">
<p class="inline-block font-semibold text-primary whitespace-nowrap leading-tight rounded-xl">
<span class="text-lg">82000</span>$
</p>
</div>
</div>
</div>
</a>
</div>
</div>
<!-- Page 5 -->
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6 w-full">
<div class="relative mx-auto w-full animation-left">
<a href="#" class="relative inline-block duration-300 ease-in-out transition-transform transform hover:-translate-y-2 w-full">
<div class="shadow p-4 rounded-lg bg-white">
<div class="flex justify-center relative rounded-lg overflow-hidden h-52">
<div class="transition-transform duration-500 transform ease-in-out hover:scale-110 w-full">
<div class="absolute inset-0 bg-black opacity-10"></div>
<img src="car.collection/5.car.collection.jpg" alt="">
</div>
<div class="absolute flex justify-center bottom-0 mb-3">
</div>
<span class="absolute top-0 left-0 inline-flex mt-3 ml-3 px-3 py-2 rounded-lg z-10 bg-red-500 text-sm font-medium text-white select-none">
Featured
</span>
</div>
<div class="mt-4">
<h2 class="font-medium text-base md:text-lg text-gray-800 line-clamp-1" title="New York">
Kuwait
</h2>
<p class="mt-2 text-sm text-gray-800 line-clamp-1" title="New York, NY 10004, United States">
Hawally, Kuwait City
</p>
</div>
<div class="grid grid-cols-2 grid-rows-2 gap-4 mt-8">
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<svg class="inline-block w-5 h-5 xl:w-4 xl:h-4 mr-3 fill-current text-gray-800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M570.53,242,512,190.75V48a16,16,0,0,0-16-16H400a16,16,0,0,0-16,16V78.75L298.53,4a16,16,0,0,0-21.06,0L5.47,242a16,16,0,0,0,21.07,24.09L64,233.27V464a48.05,48.05,0,0,0,48,48H464a48.05,48.05,0,0,0,48-48V233.27l37.46,32.79A16,16,0,0,0,570.53,242ZM480,464a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V205.27l192-168,192,168Zm0-301.25-64-56V64h64ZM208,218.67V325.34A26.75,26.75,0,0,0,234.66,352H341.3A26.76,26.76,0,0,0,368,325.34V218.67A26.75,26.75,0,0,0,341.3,192H234.66A26.74,26.74,0,0,0,208,218.67ZM240,224h96v96H240Z"></path></svg>
<span class="mt-2 xl:mt-0">
A-24 Street 12
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/engine.png" alt="engine"/>
<span class="mt-2 xl:mt-0">
Automatic
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/speedometer.png" alt="speedometer"/>
<span class="mt-2 xl:mt-0">
6500 Km
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<span class="mt-2 xl:mt-0">
2023
</span>
</p>
</div>
<div class="grid grid-cols-2 mt-8">
<div class="flex items-center">
<div class="relative">
<div class="rounded-full w-6 h-6 md:w-8 md:h-8 bg-gray-200"></div>
<span class="absolute top-0 right-0 inline-block w-3 h-3 bg-primary-red rounded-full"></span>
</div>
<p class="ml-2 text-gray-800 line-clamp-1">
Sheik-Al-Rashid
</p>
</div>
<div class="flex justify-end">
<p class="inline-block font-semibold text-primary whitespace-nowrap leading-tight rounded-xl">
<span class="text-lg">160,000</span>$
</p>
</div>
</div>
</div>
</a>
</div>
<!-- page 6 -->
<div class="relative mx-auto w-full animation-right">
<a href="#" class="relative inline-block duration-300 ease-in-out transition-transform transform hover:-translate-y-2 w-full">
<div class="shadow p-4 rounded-lg bg-white">
<div class="flex justify-center relative rounded-lg overflow-hidden h-52">
<div class="transition-transform duration-500 transform ease-in-out hover:scale-110 w-full">
<div class="absolute inset-0 bg-black opacity-10"></div>
<img src="car.collection/6.car.collection.jpg" alt="">
</div>
<div class="absolute flex justify-center bottom-0 mb-3">
</div>
<span class="absolute top-0 left-0 inline-flex mt-3 ml-3 px-3 py-2 rounded-lg z-10 bg-red-500 text-sm font-medium text-white select-none">
Featured
</span>
</div>
<div class="mt-4">
<h2 class="font-medium text-base md:text-lg text-gray-800 line-clamp-1" title="New York">
Japan
</h2>
<p class="mt-2 text-sm text-gray-800 line-clamp-1" title="New York, NY 10004, United States">
Adachi, Tokyo
</p>
</div>
<div class="grid grid-cols-2 grid-rows-2 gap-4 mt-8">
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<svg class="inline-block w-5 h-5 xl:w-4 xl:h-4 mr-3 fill-current text-gray-800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M570.53,242,512,190.75V48a16,16,0,0,0-16-16H400a16,16,0,0,0-16,16V78.75L298.53,4a16,16,0,0,0-21.06,0L5.47,242a16,16,0,0,0,21.07,24.09L64,233.27V464a48.05,48.05,0,0,0,48,48H464a48.05,48.05,0,0,0,48-48V233.27l37.46,32.79A16,16,0,0,0,570.53,242ZM480,464a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V205.27l192-168,192,168Zm0-301.25-64-56V64h64ZM208,218.67V325.34A26.75,26.75,0,0,0,234.66,352H341.3A26.76,26.76,0,0,0,368,325.34V218.67A26.75,26.75,0,0,0,341.3,192H234.66A26.74,26.74,0,0,0,208,218.67ZM240,224h96v96H240Z"></path></svg>
<span class="mt-2 xl:mt-0">
U-235 Street 36
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/engine.png" alt="engine"/>
<span class="mt-2 xl:mt-0">
Automatic
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/speedometer.png" alt="speedometer"/>
<span class="mt-2 xl:mt-0">
12,000 Km
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="25" height="25" src="https://img.icons8.com/ios/50/car--v1.png" alt="car--v1"/>
<span class="mt-2 xl:mt-0">
2020
</span>
</p>
</div>
<div class="grid grid-cols-2 mt-8">
<div class="flex items-center">
<div class="relative">
<div class="rounded-full w-6 h-6 md:w-8 md:h-8 bg-gray-200"></div>
<span class="absolute top-0 right-0 inline-block w-3 h-3 bg-primary-red rounded-full"></span>
</div>
<p class="ml-2 text-gray-800 line-clamp-1">
Micke
</p>
</div>
<div class="flex justify-end">
<p class="inline-block font-semibold text-primary whitespace-nowrap leading-tight rounded-xl">
<span class="text-lg">400,000</span>$
</p>
</div>
</div>
</div>
</a>
</div>
<!-- Page 7 -->
<div class="relative mx-auto w-full animation-left">
<a href="#" class="relative inline-block duration-300 ease-in-out transition-transform transform hover:-translate-y-2 w-full">
<div class="shadow p-4 rounded-lg bg-white">
<div class="flex justify-center relative rounded-lg overflow-hidden h-52">
<div class="transition-transform duration-500 transform ease-in-out hover:scale-110 w-full">
<div class="absolute inset-0 bg-black opacity-10"></div>
<img src="car.collection/7.car.collection.jpg" alt="">
</div>
<div class="absolute flex justify-center bottom-0 mb-3">
</div>
<span class="absolute top-0 left-0 inline-flex mt-3 ml-3 px-3 py-2 rounded-lg z-10 bg-red-500 text-sm font-medium text-white select-none">
Featured
</span>
</div>
<div class="mt-4">
<h2 class="font-medium text-base md:text-lg text-gray-800 line-clamp-1" title="New York">
UK
</h2>
<p class="mt-2 text-sm text-gray-800 line-clamp-1" title="New York, NY 10004, United States">
Edgware, London
</p>
</div>
<div class="grid grid-cols-2 grid-rows-2 gap-4 mt-8">
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<svg class="inline-block w-5 h-5 xl:w-4 xl:h-4 mr-3 fill-current text-gray-800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M570.53,242,512,190.75V48a16,16,0,0,0-16-16H400a16,16,0,0,0-16,16V78.75L298.53,4a16,16,0,0,0-21.06,0L5.47,242a16,16,0,0,0,21.07,24.09L64,233.27V464a48.05,48.05,0,0,0,48,48H464a48.05,48.05,0,0,0,48-48V233.27l37.46,32.79A16,16,0,0,0,570.53,242ZM480,464a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V205.27l192-168,192,168Zm0-301.25-64-56V64h64ZM208,218.67V325.34A26.75,26.75,0,0,0,234.66,352H341.3A26.76,26.76,0,0,0,368,325.34V218.67A26.75,26.75,0,0,0,341.3,192H234.66A26.74,26.74,0,0,0,208,218.67ZM240,224h96v96H240Z"></path></svg>
<span class="mt-2 xl:mt-0">
L-615 Street 15
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/engine.png" alt="engine"/>
<span class="mt-2 xl:mt-0">
Automatic
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/speedometer.png" alt="speedometer"/>
<span class="mt-2 xl:mt-0">
3425 Km
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="25" height="25" src="https://img.icons8.com/ios/50/car--v1.png" alt="car--v1"/>
<span class="mt-2 xl:mt-0">
2022
</span>
</p>
</div>
<div class="grid grid-cols-2 mt-8">
<div class="flex items-center">
<div class="relative">
<div class="rounded-full w-6 h-6 md:w-8 md:h-8 bg-gray-200"></div>
<span class="absolute top-0 right-0 inline-block w-3 h-3 bg-primary-red rounded-full"></span>
</div>
<p class="ml-2 text-gray-800 line-clamp-1">
Carlie Russell
</p>
</div>
<div class="flex justify-end">
<p class="inline-block font-semibold text-primary whitespace-nowrap leading-tight rounded-xl">
<span class="text-lg">1,000,000</span>$
</p>
</div>
</div>
</div>
</a>
</div>
<!-- Page 8 -->
<div class="relative mx-auto w-full animation-right">
<a href="#" class="relative inline-block duration-300 ease-in-out transition-transform transform hover:-translate-y-2 w-full">
<div class="shadow p-4 rounded-lg bg-white">
<div class="flex justify-center relative rounded-lg overflow-hidden h-52">
<div class="transition-transform duration-500 transform ease-in-out hover:scale-110 w-full">
<div class="absolute inset-0 bg-black opacity-10"></div>
<img src="car.collection/8.car.collection.jpg" alt="">
</div>
<div class="absolute flex justify-center bottom-0 mb-3">
</div>
<span class="absolute top-0 left-0 inline-flex mt-3 ml-3 px-3 py-2 rounded-lg z-10 bg-red-500 text-sm font-medium text-white select-none">
Featured
</span>
</div>
<div class="mt-4">
<h2 class="font-medium text-base md:text-lg text-gray-800 line-clamp-1" title="New York">
United States
</h2>
<p class="mt-2 text-sm text-gray-800 line-clamp-1" title="New York, NY 10004, United States">
Beverly Hills, Los Angeles
</p>
</div>
<div class="grid grid-cols-2 grid-rows-2 gap-4 mt-8">
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<svg class="inline-block w-5 h-5 xl:w-4 xl:h-4 mr-3 fill-current text-gray-800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M570.53,242,512,190.75V48a16,16,0,0,0-16-16H400a16,16,0,0,0-16,16V78.75L298.53,4a16,16,0,0,0-21.06,0L5.47,242a16,16,0,0,0,21.07,24.09L64,233.27V464a48.05,48.05,0,0,0,48,48H464a48.05,48.05,0,0,0,48-48V233.27l37.46,32.79A16,16,0,0,0,570.53,242ZM480,464a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V205.27l192-168,192,168Zm0-301.25-64-56V64h64ZM208,218.67V325.34A26.75,26.75,0,0,0,234.66,352H341.3A26.76,26.76,0,0,0,368,325.34V218.67A26.75,26.75,0,0,0,341.3,192H234.66A26.74,26.74,0,0,0,208,218.67ZM240,224h96v96H240Z"></path></svg>
<span class="mt-2 xl:mt-0">
F-16 Address
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/engine.png" alt="engine"/>
<span class="mt-2 xl:mt-0">
Automatic
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="20" height="25" src="https://img.icons8.com/ios/50/speedometer.png" alt="speedometer"/>
<span class="mt-2 xl:mt-0">
6000 Km
</span>
</p>
<p class="inline-flex flex-col xl:flex-row xl:items-center text-gray-800">
<img class="inline-flex-img" width="25" height="25" src="https://img.icons8.com/ios/50/car--v1.png" alt="car--v1"/>
<span class="mt-2 xl:mt-0">
2021
</span>
</p>
</div>
<div class="grid grid-cols-2 mt-8">
<div class="flex items-center">
<div class="relative">
<div class="rounded-full w-6 h-6 md:w-8 md:h-8 bg-gray-200"></div>
<span class="absolute top-0 right-0 inline-block w-3 h-3 bg-primary-red rounded-full"></span>
</div>
<p class="ml-2 text-gray-800 line-clamp-1">
John Doe
</p>
</div>
<div class="flex justify-end">
<p class="inline-block font-semibold text-primary whitespace-nowrap leading-tight rounded-xl">
<span class="text-lg">165,000</span>$
</p>
</div>
</div>
</div>
</a>
</div>
</div>
<!-- Customer Trust Page -->
<div class="seperation"></div>
<h1 class="company-trust animation-left">Why Choose Us</h1>
<div class="trust">
<div class="trust-1 btn-animation">
<h4><i class="bi bi-speedometer2"></i>Wide Range Of Brands</h4>
<p>With a robust selection of popular vehicles on hand, as well as leading vehicles from BMW and Ford.</p>
</div>
<div class="trust-1 card-animation">
<h4><i class="bi bi-person-arms-up"></i>Trusted By Thousands</h4>
<p>10 new offers every day. 350 offers on site, trusted by a community of thousands of users.</p>
</div>
<div class="trust-1 btn-animation-3">
<h4><i class="bi bi-box-arrow-in-up-right"></i>Service And Maintained</h4>
<p>Our stress-free finance department that can find financial solutions to save you money.</p>
</div>
</div>
<!-- Countdown -->
<div class="seperation"></div>
<h2 class="h2-responsive animation-left">Overall Report</h2>
<div class="container-2">
<div class="row">
<div class="col-md-3 col-sm-6 animation-left">
<div class="counter">
<div class="counter-icon">
<i class="fa fa-globe"></i>
</div>
<span class="counter-value">7567</span>
<h3>Car Sales</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 animation-right">
<div class="counter purple">
<div class="counter-icon">
<i class="fa fa-rocket"></i>
</div>
<span class="counter-value">1345</span>
<h3>Dealer Reviews</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 animation-left">
<div class="counter blue">
<div class="counter-icon">
<i class="fa fa-rocket"></i>
</div>
<span class="counter-value">3245</span>
<h3>Visit Per Day</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 animation-right">
<div class="counter green">
<div class="counter-icon">
<i class="fa fa-rocket"></i>
</div>
<span class="counter-value">945</span>
<h3>Verified Dealers</h3>
</div>
</div>
</div>
</div>
<!-- Peoples Reviews -->
<div class="seperation"></div>
<h2 class="h2-responsive animation-left">Customer Reviews</h2>
<div class="main">
<div class="testimonials">
<input type="radio" name="testimonial" id="input-testimonial1" checked>
<input type="radio" name="testimonial" id="input-testimonial2">
<input type="radio" name="testimonial" id="input-testimonial3">
<input type="radio" name="testimonial" id="input-testimonial4">
<div class="testimonials-inner">
<div class="testimonial">
<div class="testimonial-photo">
<div class="photo-background"></div>
<div class="photo-author"></div>
</div>
<div class="testimonial-text">
<p>My car buying experience was excellent, characterized by a seamless process from start to finish. The dealership staff was friendly, knowledgeable, and not pushy, which made decision-making comfortable</p>
</div>
<div class="testimonial-author">Henry Schwengle</div>
</div>
<div class="testimonial">
<div class="testimonial-photo">
<div class="photo-background"></div>
<div class="photo-author"></div>
</div>
<div class="testimonial-text">
<p>Purchasing a car from this dealership was an absolute pleasure. The staff was courteous, knowledgeable, and attentive, making the entire process smooth and stress-free. They took the time to understand my needs and preferences.</p>
</div>
<div class="testimonial-author">Mr. George Robert</div>
</div>
<div class="testimonial">
<div class="testimonial-photo">
<div class="photo-background"></div>
<div class="photo-author"></div>
</div>
<div class="testimonial-text">
<p>Purchasing a car from this dealership was a truly positive experience from start to finish. The staff was friendly, knowledgeable, and never pushy, allowing me to explore options at my own pace. They went above and beyond to understand my needs.</p>
</div>
<div class="testimonial-author">Doodle Wobblepants</div>
</div>
<div class="testimonial">
<div class="testimonial-photo">
<div class="photo-background"></div>
<div class="photo-author"></div>
</div>
<div class="testimonial-text">
<p>Purchasing a car from this dealership was a delightful experience, marked by professionalism and transparency. The staff were friendly, knowledgeable, and never pressuring, guiding me through various options.</p>
</div>
<div class="testimonial-author">John "Vroom" Cena</div>
</div>
</div>
<div class="testimonials-arrows">
<div class="arrow arrow-left">
<label for="input-testimonial1"></label>
<label for="input-testimonial2"></label>
<label for="input-testimonial3"></label>
<label for="input-testimonial4"></label>
<span></span>
</div>
<div class="arrow arrow-right">
<label for="input-testimonial1"></label>
<label for="input-testimonial2"></label>
<label for="input-testimonial3"></label>
<label for="input-testimonial4"></label>
<span></span>
</div>
</div>
<div class="testimonials-bullets">
<label for="input-testimonial1">
<div class="bullet">
<div>
<span></span>
</div>
</div>
</label>
<label for="input-testimonial2">
<div class="bullet">
<div>
<span></span>
</div>
</div>
</label>
<label for="input-testimonial3">
<div class="bullet">
<div>
<span></span>
</div>
</div>
</label>
<label for="input-testimonial4">
<div class="bullet">
<div>
<span></span>
</div>
</div>