-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
878 lines (871 loc) · 60.9 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow">
<title>Dentalist | Example Designing & Developing Website</title>
<!-- Stylesheet -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"/>
<link rel="stylesheet" href="./styles/main.css" type="text/css">
<link rel="icon" href="./assets/images/favicon.png" type="images/png">
<style>
.swiper-pagination-bullet-active {
background-color: #583FBC !important;
width: 16px;
border-radius: 10px;
transition: all 0.5s ease-in-out;
}
</style>
<!-- Scripts -->
<script defer src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script defer src="./scripts/main.js"></script>
</head>
<body>
<!-- SVG Importing -->
<svg class="hidden">
<symbol id="bars" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" />
</symbol>
<symbol id="arrow-right-circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path fill-rule="evenodd" d="M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm4.28 10.28a.75.75 0 0 0 0-1.06l-3-3a.75.75 0 1 0-1.06 1.06l1.72 1.72H8.25a.75.75 0 0 0 0 1.5h5.69l-1.72 1.72a.75.75 0 1 0 1.06 1.06l3-3Z" clip-rule="evenodd" />
</symbol>
<symbol id="check-circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path fill-rule="evenodd" d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm13.36-1.814a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094l3.75-5.25Z" clip-rule="evenodd" />
</symbol>
<symbol id="star" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path fill-rule="evenodd" d="M10.788 3.21c.448-1.077 1.976-1.077 2.424 0l2.082 5.006 5.404.434c1.164.093 1.636 1.545.749 2.305l-4.117 3.527 1.257 5.273c.271 1.136-.964 2.033-1.96 1.425L12 18.354 7.373 21.18c-.996.608-2.231-.29-1.96-1.425l1.257-5.273-4.117-3.527c-.887-.76-.415-2.212.749-2.305l5.404-.434 2.082-5.005Z" clip-rule="evenodd" />
</symbol>
<symbol id="home" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="m2.25 12 8.954-8.955c.44-.439 1.152-.439 1.591 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25" />
</symbol>
<symbol id="users" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M15 19.128a9.38 9.38 0 0 0 2.625.372 9.337 9.337 0 0 0 4.121-.952 4.125 4.125 0 0 0-7.533-2.493M15 19.128v-.003c0-1.113-.285-2.16-.786-3.07M15 19.128v.106A12.318 12.318 0 0 1 8.624 21c-2.331 0-4.512-.645-6.374-1.766l-.001-.109a6.375 6.375 0 0 1 11.964-3.07M12 6.375a3.375 3.375 0 1 1-6.75 0 3.375 3.375 0 0 1 6.75 0Zm8.25 2.25a2.625 2.625 0 1 1-5.25 0 2.625 2.625 0 0 1 5.25 0Z" />
</symbol>
<symbol id="envelope" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M21.75 6.75v10.5a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25m19.5 0v.243a2.25 2.25 0 0 1-1.07 1.916l-7.5 4.615a2.25 2.25 0 0 1-2.36 0L3.32 8.91a2.25 2.25 0 0 1-1.07-1.916V6.75" />
</symbol>
<symbol id="gear" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M10.343 3.94c.09-.542.56-.94 1.11-.94h1.093c.55 0 1.02.398 1.11.94l.149.894c.07.424.384.764.78.93.398.164.855.142 1.205-.108l.737-.527a1.125 1.125 0 0 1 1.45.12l.773.774c.39.389.44 1.002.12 1.45l-.527.737c-.25.35-.272.806-.107 1.204.165.397.505.71.93.78l.893.15c.543.09.94.559.94 1.109v1.094c0 .55-.397 1.02-.94 1.11l-.894.149c-.424.07-.764.383-.929.78-.165.398-.143.854.107 1.204l.527.738c.32.447.269 1.06-.12 1.45l-.774.773a1.125 1.125 0 0 1-1.449.12l-.738-.527c-.35-.25-.806-.272-1.203-.107-.398.165-.71.505-.781.929l-.149.894c-.09.542-.56.94-1.11.94h-1.094c-.55 0-1.019-.398-1.11-.94l-.148-.894c-.071-.424-.384-.764-.781-.93-.398-.164-.854-.142-1.204.108l-.738.527c-.447.32-1.06.269-1.45-.12l-.773-.774a1.125 1.125 0 0 1-.12-1.45l.527-.737c.25-.35.272-.806.108-1.204-.165-.397-.506-.71-.93-.78l-.894-.15c-.542-.09-.94-.56-.94-1.109v-1.094c0-.55.398-1.02.94-1.11l.894-.149c.424-.07.765-.383.93-.78.165-.398.143-.854-.108-1.204l-.526-.738a1.125 1.125 0 0 1 .12-1.45l.773-.773a1.125 1.125 0 0 1 1.45-.12l.737.527c.35.25.807.272 1.204.107.397-.165.71-.505.78-.929l.15-.894Z" />
<path stroke-linecap="round" stroke-linejoin="round" d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" />
</symbol>
<symbol id="rss" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M12.75 19.5v-.75a7.5 7.5 0 0 0-7.5-7.5H4.5m0-6.75h.75c7.87 0 14.25 6.38 14.25 14.25v.75M6 18.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z" />
</symbol>
<symbol id="shop" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 10.5V6a3.75 3.75 0 1 0-7.5 0v4.5m11.356-1.993 1.263 12c.07.665-.45 1.243-1.119 1.243H4.25a1.125 1.125 0 0 1-1.12-1.243l1.264-12A1.125 1.125 0 0 1 5.513 7.5h12.974c.576 0 1.059.435 1.119 1.007ZM8.625 10.5a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm7.5 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z" />
</symbol>
<symbol id="close-mark" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18 18 6M6 6l12 12" />
</symbol>
<symbol id="user" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 6a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0ZM4.501 20.118a7.5 7.5 0 0 1 14.998 0A17.933 17.933 0 0 1 12 21.75c-2.676 0-5.216-.584-7.499-1.632Z" />
</symbol>
<symbol id="envelope" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M21.75 6.75v10.5a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25m19.5 0v.243a2.25 2.25 0 0 1-1.07 1.916l-7.5 4.615a2.25 2.25 0 0 1-2.36 0L3.32 8.91a2.25 2.25 0 0 1-1.07-1.916V6.75" />
</symbol>
<symbol id="pencil-square" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="m16.862 4.487 1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897l8.932-8.931Zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10" />
</symbol>
</svg>
<div class="preload-container">
<span class="preload"></span>
</div>
<!-- Header -->
<header class="h-[100px]">
<div class="container flex items-center h-full">
<div class="flex justify-between items-center h-12 w-full">
<!-- Header Logo -->
<a href="https://2awebdeveloper.github.io/dentalist/">
<img src="./assets/images/logo.svg" alt="Site-Logo">
</a>
<!-- Header Menu -->
<nav class="hidden lg:block">
<ul class="flex gap-x-10 xl:gap-x-12 text-slate-800 text-sm font-bold child:transition-colors child:delay-75 child-hover:text-primary">
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Services</a>
</li>
<li>
<a href="#">Products</a>
</li>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="#">About Us</a>
</li>
<li>
<a href="#">Contact Us</a>
</li>
</ul>
</nav>
<!-- Header Button -->
<a class="hidden lg:block h-full w-44 bg-primary text-white text-sm font-bold text-center leading-[3rem] rounded-xl transition-colors hover:bg-indigo-800" href="#">Book appointment</a>
<!-- Mobile Menu -->
<div class="lg:hidden relative">
<!-- Mobile Menu Toggle Icon -->
<button id="mobile-menu-toggle" type="button">
<svg class="w-8 h-8">
<use href="#bars"></use>
</svg>
</button>
<!-- Menu background overlay -->
<div id="mobile-menu-overlay" class="hidden fixed inset-0 bg-black/40 transition-all z-[999]">
</div>
<!-- Mobile menu container -->
<div id="mobile-menu-container" class="w-80 bg-white fixed top-0 -left-80 bottom-0 transition-all flex flex-col z-[999]">
<!-- Logo & Close Button -->
<div class="flex items-center justify-between p-4 border-b border-b-gray-100/50">
<img src="./assets/images/logo.svg" alt="">
<button type="button" id="close-button">
<svg class="w-5 h-5">
<use href="#close-mark"></use>
</svg>
</button>
</div>
<!-- Mobile menu nav -->
<nav class="p-4 grow">
<!-- menu List -->
<ul class="flex flex-col gap-y-5 text-slate-800 text-sm font-medium child:transition-colors child:delay-75 child-hover:text-primary">
<!-- menu item -->
<li>
<a class="flex items-center gap-x-1" href="#">
<svg class="w-5 h-5">
<use href="#home"></use>
</svg>
Home
</a>
</li>
<!-- menu item -->
<li>
<a class="flex items-center gap-x-1" href="#">
<svg class="w-5 h-5">
<use href="#gear"></use>
</svg>
Services
</a>
</li>
<!-- menu item -->
<li>
<a class="flex items-center gap-x-1" href="#">
<svg class="w-5 h-5">
<use href="#shop"></use>
</svg>
Products
</a>
</li>
<!-- menu item -->
<li>
<a class="flex items-center gap-x-1" href="#">
<svg class="w-5 h-5">
<use href="#rss"></use>
</svg>
Blog
</a>
</li>
<!-- menu item -->
<li>
<a class="flex items-center gap-x-1" href="#">
<svg class="w-5 h-5">
<use href="#users"></use>
</svg>
About Us
</a>
</li>
<!-- menu item -->
<li>
<a class="flex items-center gap-x-1" href="#">
<svg class="w-5 h-5">
<use href="#envelope"></use>
</svg>
Contact Us
</a>
</li>
</ul>
</nav>
<!-- Button -->
<div class="p-4">
<a class="block w-full h-12 leading-[2.8rem] bg-primary text-white text-sm font-bold text-center rounded-xl transition-colors hover:bg-indigo-800" href="#">Book appointment</a>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Main -->
<main id="main">
<!-- Top Main Section -->
<section class="mb-12 lg:mb-16 xl:mb-24">
<div class="container">
<div class="bg-top-main pt-8 px-8 lg:pt-0 rounded-3xl lg:min-h-[500px] xl:min-h-[620px] 2xl:min-h-[760px] gap-y-14 flex flex-col lg:flex-row justify-between items-center bg-[#DBEFFA]">
<div class="lg:w-1/2 text-center items-center lg:items-start lg:text-start flex flex-col gap-y-6 lg:gap-y-8">
<h1 class="text-4xl leading-snug lg:text-5xl lg:leading-snug font-bold text-slate-800">
Entrust your smile to professional
</h1>
<p class="text-slate-800/70 font-medium text-base lg:text-lg w-[90%]">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.</p>
<a class="h-12 w-44 bg-primary text-white text-sm font-bold text-center leading-[3rem] rounded-xl transition-colors hover:bg-indigo-800" href="#">Book appointment</a>
</div>
<div class="lg:w-1/2 mt-auto">
<img class="" src="./assets/images/top-main.webp" alt="">
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section class="section mb-32">
<div class="container">
<div class="flex flex-col gap-14 lg:gap-y-16 xl:gap-y-20">
<!-- Services info contents -->
<div class="services-contents flex flex-col items-center justify-center lg:flex-row lg:justify-between lg:items-center gap-y-4 transition-all">
<!-- Left Side-->
<div class="text-center lg:text-start">
<!-- Title -->
<h3 class="text-sm text-primary font-bold mb-3">SERVICES</h3>
<!-- Subtitle -->
<p class="text-slate-800 text-3xl xs:text-4xl lg:max-w-[340px] leading-snug xs:leading-snug font-bold">Feel amazing about your oral health</p>
</div>
<!-- Right Side -->
<p class="text-center lg:text-start lg:max-w-screen-xs text-[15px] font-medium text-slate-800/70 -mb-8">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.</p>
</div>
<!-- Services -->
<div class="grid grid-cols-1 xs:grid-cols-2 lg:grid-cols-4 gap-5 child:transition-all child-hover:shadow-2xl mt-6 lg:mt-0 child-hover:shadow-slate-400/20 child-hover:border-gray-100 child:cursor-pointer">
<!-- Service item -->
<div class="services-item rounded-[32px] border p-4 flex flex-col gap-y-4">
<img class="w-full rounded-[32px]" src="./assets/images/dentures.webp" alt="">
<div class="text-center space-y-2">
<h3 class="text-slate-800 font-bold">Dentures</h3>
<p class="text-[15px] font-medium text-slate-800/50">Lorem ipsum is placeholder text commonly used in the graphic,</p>
</div>
</div>
<!-- Service item -->
<div class="services-item rounded-[32px] border p-4 flex flex-col gap-y-4">
<img class="w-full rounded-[32px]" src="./assets/images/implants.webp" alt="">
<div class="text-center space-y-2">
<h3 class="text-slate-800 font-bold">Implants</h3>
<p class="text-[15px] font-medium text-slate-800/50">Lorem ipsum is placeholder text commonly used in the graphic,</p>
</div>
</div>
<!-- Service item -->
<div class="services-item rounded-[32px] border p-4 flex flex-col gap-y-4">
<img class="w-full rounded-[32px]" src="./assets/images/whiting.webp" alt="">
<div class="text-center space-y-2">
<h3 class="text-slate-800 font-bold">Whitening</h3>
<p class="text-[15px] font-medium text-slate-800/50">Lorem ipsum is placeholder text commonly used in the graphic,</p>
</div>
</div>
<!-- Service item -->
<div class="services-item rounded-[32px] border p-4 flex flex-col gap-y-4">
<img class="w-full rounded-[32px]" src="./assets/images/rootcanal.webp" alt="">
<div class="text-center space-y-2">
<h3 class="text-slate-800 font-bold">Root Canal</h3>
<p class="text-[15px] font-medium text-slate-800/50">Lorem ipsum is placeholder text commonly used in the graphic,</p>
</div>
</div>
</div>
<!-- More Service Call to Action Button -->
<div class="services-more transition-all">
<a href="#" class="w-max mx-auto flex items-center gap-x-1 p-3 rounded-xl text-sm font-bold text-primary bg-primary/10 transition-colors hover:bg-primary/20">
View all service list
<svg class="w-5 h-5">
<use href="#arrow-right-circle"></use>
</svg>
</a>
</div>
</div>
</div>
</section>
<!-- Emergency Section -->
<section class="section my-20">
<div class="container">
<div class="flex flex-col lg:flex-row items-center gap-x-20 gap-y-12">
<!-- Emergency image -->
<div>
<img class="hidden lg:block" src="./assets/images/emergency-desktop.webp" alt="emergency-desktop">
<img class="lg:hidden" src="./assets/images/emergency-mobile.webp" alt="emergency-mobile">
</div>
<!-- Emergency Contents -->
<div class="flex flex-col gap-y-4 text-center lg:text-start">
<!-- Title -->
<h4 class="text-sm text-primary font-bold">Dental 24H Emergency</h4>
<!-- Subtitle -->
<p class="text-slate-800 text-4xl leading-snug font-bold sm:max-w-screen-sm">friendly treatment from our locally practice.</p>
<!-- Description -->
<p class="max-w-lg lg:max-w-md mx-auto lg:mx-0 text-[15px] font-medium text-slate-800/70">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.</p>
<!-- Button Call to Action -->
<a class="h-12 w-44 mx-auto bg-primary text-white text-sm font-bold text-center leading-[3rem] mt-6 lg:mt-8 lg:mx-0 rounded-xl transition-colors hover:bg-indigo-800" href="#">Book appointment</a>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="section py-16">
<div class="container">
<!-- p-8 md:px-20 md:py-16 lg:px-60 lg:py-20 -->
<!-- Feature Container -->
<div class="bg-[#DBDEFA] p-10 sm:p-12 md:px-16 md:py-[3.5rem] lg:px-32 lg:py-20 xl:py-24 xl:px-60 rounded-3xl">
<!-- Feature info -->
<div class="flex flex-col gap-y-4 mb-12 sm:mb-14 md:mb-16 lg:mb-20 text-center lg:text-start">
<!-- Title -->
<h4 class="text-sm text-primary font-bold">Features</h4>
<!-- Subtitle -->
<p class="text-slate-800 text-4xl leading-snug font-bold">Specialized care through experience</p>
<!-- Description -->
<p class="text-[15px] font-medium text-slate-800/50">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.</p>
</div>
<!-- Features -->
<div class="grid grid-cols-1 sm:grid-cols-2 gap-14">
<!-- Feature item -->
<div class="flex items-center flex-col xs:flex-row sm:flex-col lg:flex-row gap-4">
<!-- Feature image -->
<div class="w-16 h-16 shrink-0">
<img src="./assets/images/Safety-first.png" alt="Safety-first">
</div>
<!-- Feature Content -->
<div class="text-center xs:text-start sm:text-center lg:text-start">
<!-- Feature item title -->
<p class="text-slate-800 font-bold mb-1">Safety first</p>
<!-- Feature item Description -->
<p class="text-sm font-medium text-slate-800/50">Lorem ipsum is placeholder text commonly used in the graphic ...</p>
</div>
</div>
<!-- Feature item -->
<div class="flex items-center flex-col xs:flex-row sm:flex-col lg:flex-row gap-4">
<!-- Feature image -->
<div class="w-16 h-16 shrink-0">
<img src="./assets/images/Insurance-accepted.png" alt="Insurance-accepted">
</div>
<!-- Feature Content -->
<div class="text-center xs:text-start sm:text-center lg:text-start">
<!-- Feature item title -->
<p class="text-slate-800 font-bold mb-1">Insurance accepted</p>
<!-- Feature item Description -->
<p class="text-sm font-medium text-slate-800/50">Lorem ipsum is placeholder text commonly used in the graphic ...</p>
</div>
</div>
<!-- Feature item -->
<div class="flex items-center flex-col xs:flex-row sm:flex-col lg:flex-row gap-4">
<!-- Feature image -->
<div class="w-16 h-16 shrink-0">
<img src="./assets/images/Fullservice-dentistry.png" alt="Fullservice-dentistry">
</div>
<!-- Feature Content -->
<div class="text-center xs:text-start sm:text-center lg:text-start">
<!-- Feature item title -->
<p class="text-slate-800 font-bold mb-1">Full-service dentistry</p>
<!-- Feature item Description -->
<p class="text-sm font-medium text-slate-800/50">Lorem ipsum is placeholder text commonly used in the graphic ...</p>
</div>
</div>
<!-- Feature item -->
<div class="flex items-center flex-col xs:flex-row sm:flex-col lg:flex-row gap-4">
<!-- Feature image -->
<div class="w-16 h-16 shrink-0">
<img src="./assets/images/No-judgment-ever.png" alt="No-judgment-ever">
</div>
<!-- Feature Content -->
<div class="text-center xs:text-start sm:text-center lg:text-start">
<!-- Feature item title -->
<p class="text-slate-800 font-bold mb-1">No judgment ever</p>
<!-- Feature item Description -->
<p class="text-sm font-medium text-slate-800/50">Lorem ipsum is placeholder text commonly used in the graphic ...</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Expert in dental Section -->
<section class="section py-16">
<div class="container">
<div class="flex flex-col lg:flex-row items-center gap-x-20 gap-y-12">
<!-- Emergency Contents -->
<div class="flex flex-col gap-y-4 text-center lg:text-start">
<!-- Title -->
<h4 class="text-sm text-primary font-bold">EXPERTS IN DENTAL</h4>
<!-- Subtitle -->
<p class="text-slate-800 text-4xl leading-snug font-bold sm:max-w-screen-sm">First class dentistry, from top dentists.</p>
<!-- Description -->
<p class="max-w-lg lg:max-w-md mx-auto lg:mx-0 text-[15px] font-medium text-slate-800/70">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts</p>
<div class="flex flex-col gap-y-2 child:text-[#181945] child:text-[15px] child:font-medium mt-4">
<p class="flex items-center gap-x-2">
<svg class="w-5 h-5 text-primary">
<use href="#check-circle"></use>
</svg>
Top quality dental team
</p>
<p class="flex items-center gap-x-2">
<svg class="w-5 h-5 text-primary">
<use href="#check-circle"></use>
</svg>
State of the art dental services
</p>
<p class="flex items-center gap-x-2">
<svg class="w-5 h-5 text-primary">
<use href="#check-circle"></use>
</svg>
Discount on all dental treatment
</p>
</div>
</div>
<!-- Emergency image -->
<div class="flex order-first lg:order-last">
<img class="hidden lg:block" src="./assets/images/expert-in-dental-desktop.webp" alt="expert-in-dental-desktop.png">
<img class="lg:hidden" src="./assets/images/expert-in-dental-mobile.webp" alt="expert-in-dental-mobile.png">
</div>
</div>
</div>
</section>
<!-- TESTIMONIAL Section -->
<section class="section py-16">
<div class="container">
<div class="bg-[#D9EBFA] rounded-3xl p-10 md:px-16 md:py-[3.5rem] lg:py-20 xl:py-24">
<!-- TESTIMONIAL info contents -->
<div class="flex flex-col items-center justify-center lg:flex-row lg:justify-between lg:items-center gap-y-4">
<!-- Left Side-->
<div class="text-center lg:text-start">
<!-- Title -->
<h3 class="text-sm text-primary font-bold mb-3">TESTIMONIAL</h3>
<!-- Subtitle -->
<p class="text-slate-800 text-3xl xs:text-4xl lg:max-w-[400px] leading-snug xs:leading-snug font-bold">What people have said about us</p>
</div>
<!-- Right Side -->
<p class="text-center lg:text-start lg:max-w-sm text-[15px] font-medium text-slate-800/70 -mb-8">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts</p>
</div>
<!-- User TESTIMONIAL -->
<div class="swiper swiper-1">
<div class="swiper-wrapper mt-28">
<!-- TESTIMONIAL item -->
<div class="swiper-slide relative bg-white rounded-3xl p-8">
<!-- User Avatar image -->
<div class="absolute mx-auto w-max left-0 right-0 top-0 translate-y-[-50%] border-8 rounded-full border-[#D9EBFA]">
<img src="./assets/images/user-avatar-1.webp" alt="user-avatar-1">
</div>
<div class="text-center mt-8">
<!-- User Name -->
<p class="font-bold text-slate-800 mb-2">Robert Fox</p>
<!-- User Comment -->
<p class="text-[15px] font-medium text-slate-800/70">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts</p>
<div class="flex items-center justify-center mt-6">
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-gray-400/90">
<use href="#star"></use>
</svg>
</div>
</div>
</div>
<!-- TESTIMONIAL item -->
<div class="swiper-slide relative bg-white rounded-3xl p-8">
<!-- User Avatar image -->
<div class="absolute mx-auto w-max left-0 right-0 top-0 translate-y-[-50%] border-8 rounded-full border-[#D9EBFA]">
<img src="./assets/images/user-avatar-2.webp" alt="user-avatar-2">
</div>
<div class="text-center mt-8">
<!-- User Name -->
<p class="font-bold text-slate-800 mb-2">Albert Flores</p>
<!-- User Comment -->
<p class="text-[15px] font-medium text-slate-800/70">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts</p>
<div class="flex items-center justify-center mt-6">
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-gray-400/90">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-gray-400/90">
<use href="#star"></use>
</svg>
</div>
</div>
</div>
<!-- TESTIMONIAL item -->
<div class="swiper-slide relative bg-white rounded-3xl p-8">
<!-- User Avatar image -->
<div class="absolute mx-auto w-max left-0 right-0 top-0 translate-y-[-50%] border-8 rounded-full border-[#D9EBFA]">
<img src="./assets/images/user-avatar-3.webp" alt="user-avatar-3">
</div>
<div class="text-center mt-8">
<!-- User Name -->
<p class="font-bold text-slate-800 mb-2">Bessie Cooper</p>
<!-- User Comment -->
<p class="text-[15px] font-medium text-slate-800/70">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts</p>
<div class="flex items-center justify-center mt-6">
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
</div>
</div>
</div>
<!-- TESTIMONIAL item -->
<div class="swiper-slide relative bg-white rounded-3xl p-8">
<!-- User Avatar image -->
<div class="absolute mx-auto w-max left-0 right-0 top-0 translate-y-[-50%] border-8 rounded-full border-[#D9EBFA]">
<img src="./assets/images/user-avatar-4.webp" alt="user-avatar-3">
</div>
<div class="text-center mt-8">
<!-- User Name -->
<p class="font-bold text-slate-800 mb-2">David Martin</p>
<!-- User Comment -->
<p class="text-[15px] font-medium text-slate-800/70">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts</p>
<div class="flex items-center justify-center mt-6">
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-orange-star">
<use href="#star"></use>
</svg>
<svg class="w-5 h-5 text-gray-400/90">
<use href="#star"></use>
</svg>
</div>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</section>
<!-- Blog Post Section -->
<section class="section py-16">
<div class="container">
<!-- Blog Post info -->
<div class="text-center flex flex-col gap-y-4 mb-14 md:mb-16">
<!-- Title -->
<h4 class="text-sm text-primary font-bold">BLOG</h4>
<!-- Subtitle -->
<p class="text-slate-800 text-4xl leading-snug font-bold">Stay updated with our latest news</p>
</div>
<!-- Posts -->
<div class="swiper swiper-2">
<div class="swiper-wrapper">
<!-- Post item -->
<div class="swiper-slide flex flex-col gap-y-6 border rounded-[32px] p-4">
<!-- Post image -->
<div class="relative">
<a class="post-img block child:block" href="#">
<img class="block w-full" src="./assets/images/blog-post-1.webp" alt="blog-post-1">
</a>
<!-- Publish Post Date -->
<div class="post-publish-date absolute left-5 top-5 sm:left-4 sm:top-4 w-14 h-14 bg-white p-2 flex flex-col rounded-xl text-center items-center justify-center">
<span class="font-bold text-slate-800">23</span>
<span class="text-sm font-bold text-slate-800/70 -mt-1">Jan</span>
</div>
</div>
<!-- Post contents -->
<div class="flex flex-col gap-y-2 px-1">
<!-- Post Category -->
<a href="#" class="text-xs text-primary font-bold">TECHNOLOGY</a>
<!-- Post Title -->
<h4 class="font-bold text-slate-800"><a href="#">New Technology Make for Dental Operation</a></h4>
<!-- Post Excerption -->
<p class="line-clamp-2 text-[15px] font-medium text-slate-800/70">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing</p>
</div>
</div>
<!-- Post item -->
<div class="swiper-slide flex flex-col gap-y-6 border rounded-[32px] p-4">
<!-- Post image -->
<div class="relative">
<a class="post-img block child:block" href="#">
<img class="block w-full" src="./assets/images/blog-post-2.webp" alt="blog-post-2">
</a>
<!-- Publish Post Date -->
<div class="post-publish-date absolute left-5 top-5 sm:left-4 sm:top-4 w-14 h-14 bg-white p-2 flex flex-col rounded-xl text-center items-center justify-center">
<span class="font-bold text-slate-800">23</span>
<span class="text-sm font-bold text-slate-800/70 -mt-1">Jan</span>
</div>
</div>
<!-- Post contents -->
<div class="flex flex-col gap-y-2 px-1">
<!-- Post Category -->
<a href="#" class="text-xs text-primary font-bold">DENTAL</a>
<!-- Post Title -->
<h4 class="font-bold text-slate-800"><a href="#">Regular Dental care make Your Smile Brighter</a></h4>
<!-- Post Excerption -->
<p class="line-clamp-2 text-[15px] font-medium text-slate-800/70">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing</p>
</div>
</div>
<!-- Post item -->
<div class="swiper-slide flex flex-col gap-y-6 border rounded-[32px] p-4">
<!-- Post image -->
<div class="relative">
<a class="post-img block child:block" href="#">
<img class="block w-full" src="./assets/images/blog-post-3.webp" alt="blog-post-3">
</a>
<!-- Publish Post Date -->
<div class="post-publish-date absolute left-5 top-5 sm:left-4 sm:top-4 w-14 h-14 bg-white p-2 flex flex-col rounded-xl text-center items-center justify-center">
<span class="font-bold text-slate-800">23</span>
<span class="text-sm font-bold text-slate-800/70 -mt-1">Jan</span>
</div>
</div>
<!-- Post contents -->
<div class="flex flex-col gap-y-2 px-1">
<!-- Post Category -->
<a href="#" class="text-xs text-primary font-bold">HYGIENE</a>
<!-- Post Title -->
<h4 class="font-bold text-slate-800"><a href="#">Dental Hygiene for All Age to Make Smile</a></h4>
<!-- Post Excerption -->
<p class="line-clamp-2 text-[15px] font-medium text-slate-800/70">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing</p>
</div>
</div>
<!-- Post item -->
<div class="swiper-slide flex flex-col gap-y-6 border rounded-[32px] p-4">
<!-- Post image -->
<div class="relative">
<a class="post-img block child:block rounded-[32px] sm:rounded-3xl overflow-hidden" href="#">
<img class="block w-full" src="./assets/images/blog-post-4.webp" alt="blog-post-3">
</a>
<!-- Publish Post Date -->
<div class="post-publish-date absolute left-5 top-5 sm:left-4 sm:top-4 w-14 h-14 bg-white p-2 flex flex-col rounded-xl text-center items-center justify-center">
<span class="font-bold text-slate-800">23</span>
<span class="text-sm font-bold text-slate-800/70 -mt-1">Jan</span>
</div>
</div>
<!-- Post contents -->
<div class="flex flex-col gap-y-2 px-1">
<!-- Post Category -->
<a href="#" class="text-xs text-primary font-bold">DENTAL</a>
<!-- Post Title -->
<h4 class="font-bold text-slate-800"><a href="#">Home and Natural Remedies for Toothache</a></h4>
<!-- Post Excerption -->
<p class="line-clamp-2 text-[15px] font-medium text-slate-800/70">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing</p>
</div>
</div>
<!-- Post item -->
<div class="swiper-slide flex flex-col gap-y-6 border rounded-[32px] p-4">
<!-- Post image -->
<div class="relative">
<a class="post-img block child:block rounded-[32px] sm:rounded-3xl overflow-hidden" href="#">
<img class="block w-full" src="./assets/images/blog-post-5.webp" alt="blog-post-5">
</a>
<!-- Publish Post Date -->
<div class="post-publish-date absolute left-5 top-5 sm:left-4 sm:top-4 w-14 h-14 bg-white p-2 flex flex-col rounded-xl text-center items-center justify-center">
<span class="font-bold text-slate-800">23</span>
<span class="text-sm font-bold text-slate-800/70 -mt-1">Jan</span>
</div>
</div>
<!-- Post contents -->
<div class="flex flex-col gap-y-2 px-1">
<!-- Post Category -->
<a href="#" class="text-xs text-primary font-bold">ACCESSORIES</a>
<!-- Post Title -->
<h4 class="font-bold text-slate-800"><a href="#">How to Choose the Right Toothbrush for You</a></h4>
<!-- Post Excerption -->
<p class="line-clamp-2 text-[15px] font-medium text-slate-800/70">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing</p>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- Contact us Section -->
<section class="section py-16">
<div class="container">
<div class="flex flex-col lg:flex-row gap-y-6 gap-x-20">
<!-- Map image -->
<div class="relative lg:w-1/2">
<img class="block w-full h-[440px] xs:h-[500px] lg:h-[610px] xl:h-[680px] object-cover rounded-3xl" src="./assets/images/map-image.webp" alt="map-image">
<!-- Absolute Address -->
<div class="absolute bg-white p-4 bottom-8 left-8 right-8 rounded-3xl flex gap-x-6 items-center">
<!-- icon -->
<img class="block w-16 h-16" src="./assets/images/home-icon.png" alt="home-icon">
<!-- Address -->
<div>
<p class="text-xs text-primary font-bold mb-1">ADDRESS</p>
<p class="font-bold text-slate-800 max-w-[260px]">Place to write an address</p>
</div>
</div>
</div>
<div class="lg:w-1/2 bg-gray-100 px-4 pt-10 pb-4 rounded-3xl lg:bg-transparent lg:p-0 lg:rounded-none">
<!-- Contact us info -->
<div class="flex flex-col gap-y-4 text-center lg:text-start">
<h4 class="text-sm text-primary font-bold">BOOK APPOINTMENT</h4>
<!-- Subtitle -->
<p class="text-slate-800 text-4xl leading-snug font-bold lg:max-w-screen-sm">Care at Dentalist is pleasure</p>
<!-- Description -->
<p class="mx-auto lg:mx-0 text-[15px] font-medium text-slate-800/70">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual</p>
</div>
<!-- Contact us form -->
<form class="grid grid-cols-1 sm:grid-cols-2 gap-x-5 gap-y-7 mt-10 xl:mt-16">
<!-- name input -->
<div class="flex flex-col gap-y-2 relative">
<label class="font-bold text-[13px] text-slate-600/90" for="name">NAME</label>
<input class="form-input" id="name" type="text" placeholder="Enter your name..." required>
<svg class="w-6 h-6 absolute bottom-4 left-4 text-slate-400">
<use href="#user"></use>
</svg>
</div>
<!-- email input -->
<div class="flex flex-col gap-y-2 relative">
<label class="font-bold text-[13px] text-slate-600/90" for="email">EMAIL ADDRESS</label>
<input class="form-input" id="email" type="email" placeholder="Your email address..." required>
<svg class="w-6 h-6 absolute bottom-4 left-4 text-slate-400">
<use href="#envelope"></use>
</svg>
</div>
<!-- messages input -->
<div class="flex flex-col gap-y-2 sm:col-span-2 relative">
<label class="font-bold text-[13px] text-slate-600/90" for="message">MESSAGES</label>
<textarea class="form-input min-h-[234px] max-h-[234px] lg:min-h-[116px] lg:max-h-[116px] xl:min-h-[234px] xl:max-h-[234px]" id="message" placeholder="Enter your messages..." required></textarea>
<svg class="w-6 h-6 absolute top-[42px] left-4 text-slate-400">
<use href="#pencil-square"></use>
</svg>
</div>
<!-- Form submit button -->
<div class="flex items-center justify-between sm:col-span-2">
<!-- Phone number -->
<div class="hidden sm:flex items-center gap-x-4">
<img class="block w-16 h-16" src="./assets/images/phone-icon.png" alt="phone-icon.png">
<div>
<p class="text-primary font-bold text-sm">Dental 24H Emergency</p>
<p class="text-slate-800 font-bold mt-1">01234567890</p>
</div>
</div>
<!-- Submit button -->
<button type="submit" class="h-12 w-full sm:w-44 bg-primary text-white text-sm font-bold text-center leading-[3rem] rounded-xl transition-colors hover:bg-indigo-800">Book an appointment</button>
</div>
</form>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-[#041434] mt-10">
<div class="container">
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-y-12 gap-x-10 xl:gap-x-20 text-white py-16">
<!-- About me in Footer -->
<div class="sm:col-span-2 lg:col-span-1">
<!-- Logo -->
<img src="./assets/images/logo-footer.svg" alt="logo-footer">
<!-- Description -->
<p class="text-[15px] text-white/70 mt-4">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups....</p>
<!-- Social in footer -->
<div class="mt-8">
<p class="text-[13px] font-medium text-white/70 mb-4">FALLOW US ON</p>
<!-- Socials -->
<div class="flex items-center gap-x-4 child:transition-colors child:bg-white/90 child-hover:bg-white child:p-2 child:rounded-lg">
<!-- Social item -->
<a href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="#1e293b" d="M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4zm9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8A1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5a5 5 0 0 1-5 5a5 5 0 0 1-5-5a5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3a3 3 0 0 0 3 3a3 3 0 0 0 3-3a3 3 0 0 0-3-3"/></svg>
</a>
<!-- Social item -->
<a href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="#1e293b" d="M6.94 5a2 2 0 1 1-4-.002a2 2 0 0 1 4 .002M7 8.48H3V21h4zm6.32 0H9.34V21h3.94v-6.57c0-3.66 4.77-4 4.77 0V21H22v-7.93c0-6.17-7.06-5.94-8.72-2.91z"/></svg>
</a>
<!-- Social item -->
<a href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="#1e293b" d="M14 13.5h2.5l1-4H14v-2c0-1.03 0-2 2-2h1.5V2.14c-.326-.043-1.557-.14-2.857-.14C11.928 2 10 3.657 10 6.7v2.8H7v4h3V22h4z"/></svg>
</a>
</div>
</div>
</div>
<!-- Quick Access in Footer -->
<div>
<!-- Title -->
<p class="text-[13px] font-medium text-white/70 mb-6">QUICK LINKS</p>
<!-- Quick Access List -->
<ul class="flex flex-col gap-y-4 text-[15px]">
<!-- Quick Access item -->
<li>
<a class="quick-access-item" href="#">About Us</a>
</li>
<!-- Quick Access item -->
<li>
<a class="quick-access-item" href="#">Dental Services</a>
</li>
<!-- Quick Access item -->
<li>
<a class="quick-access-item" href="#">Dentist</a>
</li>
<!-- Quick Access item -->
<li>
<a class="quick-access-item" href="#">Blog</a>
</li>
<!-- Quick Access item -->
<li>
<a class="quick-access-item" href="#">FAQs</a>
</li>
</ul>
</div>
<!-- Contact us in Footer -->
<div>
<!-- Title -->
<p class="text-[13px] font-medium text-white/70">CONTACT & INFORMATION</p>
<!-- Contact info List -->
<div class="flex flex-col gap-y-4 mt-6">
<!-- Contact info item -->
<div class="flex items-center gap-x-4">
<!-- info icon -->
<img class="h-14 w-14" src="./assets/images/phone-white-icon.png" alt="phone-icon">
<!-- info contents -->
<div>
<p class="text-[14px] font-medium text-white/70 mb-1">Phone Number</p>
<p class="font-bold">01234567890</p>
</div>
</div>
<!-- Contact info item -->
<div class="flex items-center gap-x-4">
<!-- info icon -->
<img class="h-14 w-14" src="./assets/images/clock-icon.png" alt="clock-icon">
<!-- info contents -->
<div>
<p class="text-[14px] font-medium text-white/70 mb-1">Open Hour</p>
<p class="font-bold">09:00 AM - 18:00 PM</p>
</div>
</div>
<!-- Contact info item -->
<div class="flex items-center gap-x-4">
<!-- info icon -->
<img class="h-14 w-14" src="./assets/images/location-icon.png" alt="location-icon">
<!-- info contents -->
<div>
<p class="text-[14px] font-medium text-white/70 mb-1">Clinic Address</p>
<p class="font-bold">Place to write an address</p>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>