-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
825 lines (793 loc) · 47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/all.min.css">
<!-- tailwind -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tw-elements/dist/css/tw-elements.min.css" />
<script src="https://cdn.tailwindcss.com/3.3.0"></script>
<script>
tailwind.config = {
darkMode: "class",
theme: {
fontFamily: {
sans: ["Roboto", "sans-serif"],
body: ["Roboto", "sans-serif"],
mono: ["ui-monospace", "monospace"],
},
},
corePlugins: {
preflight: false,
},
};
</script>
<!-- tailwind end -->
<link rel="stylesheet" href="./css/tailwind.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&family=Delicious+Handrawn&family=PT+Sans+Narrow:wght@700&family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap"
rel="stylesheet">
<title>Document</title>
</head>
<body>
<div class="landing">
<div class="header" id="header">
<h1>Code Dz</h1>
<ul style="margin: 0;">
<li><a href="#">Home</a></li>
<li id="active"><a href="#">About Us<i class="fa-solid fa-angle-down"></i>
<div id="list">
<a href="#section2">Team</a>
<a href="#section5">Pricing</a>
<a href="#section6">FAQ</a>
</div>
</a></li>
<li><a href="#section3">Portfolio</a></li>
<li><a href="#section4">services</a></li>
<li><a href="#section5">Pricing</a></li>
<li><a href="#section8">Blog</a></li>
<li><a href="#section9">Contact</a></li>
</ul>
<div class="header-info">
<label id="theme-toggle-button" style="margin-bottom: 15px;">
<input type="checkbox" id="toggleBtn">
<svg viewBox="0 0 69.667 44" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(3.5 3.5)" data-name="Component 15 – 1" id="Component_15_1">
<g filter="url(#container)" transform="matrix(1, 0, 0, 1, -3.5, -3.5)">
<rect fill="#83cbd8" transform="translate(3.5 3.5)" rx="17.5" height="35" width="60.667"
data-name="container" id="container"></rect>
</g>
<g transform="translate(2.333 2.333)" id="button">
<g data-name="sun" id="sun">
<g filter="url(#sun-outer)" transform="matrix(1, 0, 0, 1, -5.83, -5.83)">
<circle fill="#f8e664" transform="translate(5.83 5.83)" r="15.167" cy="15.167" cx="15.167"
data-name="sun-outer" id="sun-outer-2"></circle>
</g>
<g filter="url(#sun)" transform="matrix(1, 0, 0, 1, -5.83, -5.83)">
<path fill="rgba(246,254,247,0.29)" transform="translate(9.33 9.33)"
d="M11.667,0A11.667,11.667,0,1,1,0,11.667,11.667,11.667,0,0,1,11.667,0Z" data-name="sun"
id="sun-3"></path>
</g>
<circle fill="#fcf4b9" transform="translate(8.167 8.167)" r="7" cy="7" cx="7" id="sun-inner"></circle>
</g>
<g data-name="moon" id="moon">
<g filter="url(#moon)" transform="matrix(1, 0, 0, 1, -31.5, -5.83)">
<circle fill="#cce6ee" transform="translate(31.5 5.83)" r="15.167" cy="15.167" cx="15.167"
data-name="moon" id="moon-3"></circle>
</g>
<g fill="#a6cad0" transform="translate(-24.415 -1.009)" id="patches">
<circle transform="translate(43.009 4.496)" r="2" cy="2" cx="2"></circle>
<circle transform="translate(39.366 17.952)" r="2" cy="2" cx="2" data-name="patch"></circle>
<circle transform="translate(33.016 8.044)" r="1" cy="1" cx="1" data-name="patch"></circle>
<circle transform="translate(51.081 18.888)" r="1" cy="1" cx="1" data-name="patch"></circle>
<circle transform="translate(33.016 22.503)" r="1" cy="1" cx="1" data-name="patch"></circle>
<circle transform="translate(50.081 10.53)" r="1.5" cy="1.5" cx="1.5" data-name="patch"></circle>
</g>
</g>
</g>
<g filter="url(#cloud)" transform="matrix(1, 0, 0, 1, -3.5, -3.5)">
<path fill="#fff" transform="translate(-3466.47 -160.94)"
d="M3512.81,173.815a4.463,4.463,0,0,1,2.243.62.95.95,0,0,1,.72-1.281,4.852,4.852,0,0,1,2.623.519c.034.02-.5-1.968.281-2.716a2.117,2.117,0,0,1,2.829-.274,1.821,1.821,0,0,1,.854,1.858c.063.037,2.594-.049,3.285,1.273s-.865,2.544-.807,2.626a12.192,12.192,0,0,1,2.278.892c.553.448,1.106,1.992-1.62,2.927a7.742,7.742,0,0,1-3.762-.3c-1.28-.49-1.181-2.65-1.137-2.624s-1.417,2.2-2.623,2.2a4.172,4.172,0,0,1-2.394-1.206,3.825,3.825,0,0,1-2.771.774c-3.429-.46-2.333-3.267-2.2-3.55A3.721,3.721,0,0,1,3512.81,173.815Z"
data-name="cloud" id="cloud"></path>
</g>
<g fill="#def8ff" transform="translate(3.585 1.325)" id="stars">
<path transform="matrix(-1, 0.017, -0.017, -1, 24.231, 3.055)"
d="M.774,0,.566.559,0,.539.458.933.25,1.492l.485-.361.458.394L1.024.953,1.509.592.943.572Z"></path>
<path transform="matrix(-0.777, 0.629, -0.629, -0.777, 23.185, 12.358)"
d="M1.341.529.836.472.736,0,.505.46,0,.4.4.729l-.231.46L.605.932l.4.326L.9.786Z" data-name="star">
</path>
<path transform="matrix(0.438, 0.899, -0.899, 0.438, 23.177, 29.735)"
d="M.015,1.065.475.9l.285.365L.766.772l.46-.164L.745.494.751,0,.481.407,0,.293.285.658Z"
data-name="star"></path>
<path transform="translate(12.677 0.388) rotate(104)"
d="M1.161,1.6,1.059,1,1.574.722.962.607.86,0,.613.572,0,.457.446.881.2,1.454l.516-.274Z"
data-name="star"></path>
<path transform="matrix(-0.07, 0.998, -0.998, -0.07, 11.066, 15.457)"
d="M.873,1.648l.114-.62L1.579.945,1.03.62,1.144,0,.706.464.157.139.438.7,0,1.167l.592-.083Z"
data-name="star"></path>
<path transform="translate(8.326 28.061) rotate(11)"
d="M.593,0,.638.724,0,.982l.7.211.045.724.36-.64.7.211L1.342.935,1.7.294,1.063.552Z" data-name="star">
</path>
<path transform="translate(5.012 5.962) rotate(172)"
d="M.816,0,.5.455,0,.311.323.767l-.312.455.516-.215.323.456L.827.911,1.343.7.839.552Z"
data-name="star"></path>
<path transform="translate(2.218 14.616) rotate(169)"
d="M1.261,0,.774.571.114.3.487.967,0,1.538.728,1.32l.372.662.047-.749.728-.218L1.215.749Z"
data-name="star"></path>
</g>
</g>
</svg>
</label>
<label class="burger" for="burger">
<input type="checkbox" id="burger">
<span></span>
<span></span>
<span></span>
<div class="list-mob hide" id="list-mob">
<li><a href="#">Home</a></li>
<li><a href="#section4">Services</a></li>
<li><a href="#section3">Portfolio</a></li>
<li><a href="#section2">Team</a></li>
<li><a href="#section5">Pricing</a></li>
<li><a href="#section8">Blog</a></li>
<li><a href="#section9">Contact</a></li>
</div>
</label>
</div>
</div>
<div class="header2">
<h3>Programmer and designer of websites</h3>
<button>Get in touch</button>
</div>
</div>
<div class="section1">
<h3>About Code Dz</h3>
<div class="container">
<div class="image">
<img src="./image/headerCover.png" alt="">
</div>
<div class="section1-About">
<h4>For the next great business</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo tempora cumque eligendi in nostrum labore omnis
quaerat.</p>
<ul>
<li><i class="fa-solid fa-check"></i>Officia quaerat eaque neque</li>
<li><i class="fa-solid fa-check"></i>Possimus aut consequuntur incidunt</li>
<li><i class="fa-solid fa-check"></i>Lorem ipsum dolor sit amet</li>
<li><i class="fa-solid fa-check"></i>Consectetur adipisicing elit</li>
</ul>
<button class="section-btn">Get in touch</button>
</div>
</div>
</div>
<div class="section2" id="section2">
<h3>Our Team</h3>
<div class="boxes">
<div class="box">
<div class="image">
<img src="./image/member1png.png" alt="">
<div class="image-social">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-twitter"></i>
</div>
</div>
<div class="info">
<h4>Ossama</h4>
<p>PRODUCT MANAGER</p>
</div>
</div>
<div class="box">
<div class="image">
<img src="./image/member2.png" alt="">
<div class="image-social">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-twitter"></i>
</div>
</div>
<div class="info">
<h4>Mimi Mimita</h4>
<p>PRODUCT MANAGER</p>
</div>
</div>
<div class="box">
<div class="image">
<img src="./image/member3.png" alt="">
<div class="image-social">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-twitter"></i>
</div>
</div>
<div class="info">
<h4>Allan</h4>
<p>PRODUCT MANAGER</p>
</div>
</div>
<div class="box">
<div class="image">
<img src="./image/member4.png" alt="">
<div class="image-social">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-twitter"></i>
</div>
</div>
<div class="info">
<h4>iyad</h4>
<p>PRODUCT MANAGER</p>
</div>
</div>
</div>
</div>
<div class="section3" id="section3">
<h3>Portfolio</h3>
<div class="switcher">
<button class="active" data-cat=".All">All</button>
<button data-cat=".web">Web</button>
<button data-cat=".design">Design</button>
</div>
<div class="gallery">
<img class="All web" src="./image/web1.jpg" alt="">
<img class="All web" src="./image/web2.jpg" alt="">
<img class="All web" src="./image/web3.png" alt="">
<img class="All design" src="./image/des1.jpg" alt="">
<img class="All web" src="./image/web4.jpg" alt="">
<img class="All design" src="./image/des2.jpg" alt="">
<img class="All design" src="./image/des3.jpg" alt="">
<img class="All web" src="./image/web5.jpg" alt="">
<img class="All web" src="./image/web6.png" alt="">
</div>
</div>
<div class="section4" id="section4">
<h3>Our Services</h3>
<div class="services">
<div
class="block rounded-lg bg-white shadow-[0_2px_15px_-3px_rgba(0,0,0,0.07),0_10px_20px_-2px_rgba(0,0,0,0.04)] dark:bg-neutral-700">
<div class="relative overflow-hidden bg-cover bg-no-repeat" data-te-ripple-init data-te-ripple-color="light">
<img class="rounded-t-lg" src="./image/ser1.jpg" alt="" />
<a href="#!">
<div
class="absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[hsla(0,0%,98%,0.15)] bg-fixed opacity-0 transition duration-300 ease-in-out hover:opacity-100">
</div>
</a>
</div>
<div class="p-6">
<h5 class="mb-2 text-xl font-medium leading-tight text-neutral-800 dark:text-neutral-50">
Business Consulting
</h5>
<p class="mb-4 text-base text-neutral-600 dark:text-neutral-200">
Some quick example text to build on the card title and make up the
bulk of the card's content.
</p>
<button type="button"
class="inline-block rounded bg-primary px-6 pb-2 pt-2.5 text-xs font-medium uppercase leading-normal text-white shadow-[0_4px_9px_-4px_#3b71ca] transition duration-150 ease-in-out hover:bg-primary-600 hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:bg-primary-600 focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:outline-none focus:ring-0 active:bg-primary-700 active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] dark:shadow-[0_4px_9px_-4px_rgba(59,113,202,0.5)] dark:hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)]"
data-te-ripple-init data-te-ripple-color="light">
Get in touch
</button>
</div>
</div>
<div
class="block rounded-lg bg-white shadow-[0_2px_15px_-3px_rgba(0,0,0,0.07),0_10px_20px_-2px_rgba(0,0,0,0.04)] dark:bg-neutral-700">
<div class="relative overflow-hidden bg-cover bg-no-repeat" data-te-ripple-init data-te-ripple-color="light">
<img class="rounded-t-lg" src="./image/ser2.jpg" alt="" />
<a href="#!">
<div
class="absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[hsla(0,0%,98%,0.15)] bg-fixed opacity-0 transition duration-300 ease-in-out hover:opacity-100">
</div>
</a>
</div>
<div class="p-6">
<h5 class="mb-2 text-xl font-medium leading-tight text-neutral-800 dark:text-neutral-50">
Market Analysis
</h5>
<p class="mb-4 text-base text-neutral-600 dark:text-neutral-200">
Some quick example text to build on the card title and make up the
bulk of the card's content.
</p>
<button type="button"
class="inline-block rounded bg-primary px-6 pb-2 pt-2.5 text-xs font-medium uppercase leading-normal text-white shadow-[0_4px_9px_-4px_#3b71ca] transition duration-150 ease-in-out hover:bg-primary-600 hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:bg-primary-600 focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:outline-none focus:ring-0 active:bg-primary-700 active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] dark:shadow-[0_4px_9px_-4px_rgba(59,113,202,0.5)] dark:hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)]"
data-te-ripple-init data-te-ripple-color="light">
Get in touch
</button>
</div>
</div>
<div
class="block rounded-lg bg-white shadow-[0_2px_15px_-3px_rgba(0,0,0,0.07),0_10px_20px_-2px_rgba(0,0,0,0.04)] dark:bg-neutral-700">
<div class="relative overflow-hidden bg-cover bg-no-repeat" data-te-ripple-init data-te-ripple-color="light">
<img class="rounded-t-lg" src="./image/ser3.png" alt="" />
<a href="#!">
<div
class="absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[hsla(0,0%,98%,0.15)] bg-fixed opacity-0 transition duration-300 ease-in-out hover:opacity-100">
</div>
</a>
</div>
<div class="p-6">
<h5 class="mb-2 text-xl font-medium leading-tight text-neutral-800 dark:text-neutral-50">
User Monitoring
</h5>
<p class="mb-4 text-base text-neutral-600 dark:text-neutral-200">
Some quick example text to build on the card title and make up the
bulk of the card's content.
</p>
<button type="button"
class="inline-block rounded bg-primary px-6 pb-2 pt-2.5 text-xs font-medium uppercase leading-normal text-white shadow-[0_4px_9px_-4px_#3b71ca] transition duration-150 ease-in-out hover:bg-primary-600 hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:bg-primary-600 focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:outline-none focus:ring-0 active:bg-primary-700 active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] dark:shadow-[0_4px_9px_-4px_rgba(59,113,202,0.5)] dark:hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)]"
data-te-ripple-init data-te-ripple-color="light">
Get in touch
</button>
</div>
</div>
<div
class="block rounded-lg bg-white shadow-[0_2px_15px_-3px_rgba(0,0,0,0.07),0_10px_20px_-2px_rgba(0,0,0,0.04)] dark:bg-neutral-700">
<div class="relative overflow-hidden bg-cover bg-no-repeat" data-te-ripple-init data-te-ripple-color="light">
<img class="rounded-t-lg" src="./image/ser4.jpg" alt="" />
<a href="#!">
<div
class="absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[hsla(0,0%,98%,0.15)] bg-fixed opacity-0 transition duration-300 ease-in-out hover:opacity-100">
</div>
</a>
</div>
<div class="p-6">
<h5 class="mb-2 text-xl font-medium leading-tight text-neutral-800 dark:text-neutral-50">
Insurance Consulting
</h5>
<p class="mb-4 text-base text-neutral-600 dark:text-neutral-200">
Some quick example text to build on the card title and make up the
bulk of the card's content.
</p>
<button type="button"
class="inline-block rounded bg-primary px-6 pb-2 pt-2.5 text-xs font-medium uppercase leading-normal text-white shadow-[0_4px_9px_-4px_#3b71ca] transition duration-150 ease-in-out hover:bg-primary-600 hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:bg-primary-600 focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:outline-none focus:ring-0 active:bg-primary-700 active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] dark:shadow-[0_4px_9px_-4px_rgba(59,113,202,0.5)] dark:hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)]"
data-te-ripple-init data-te-ripple-color="light">
Get in touch
</button>
</div>
</div>
<div
class="block rounded-lg bg-white shadow-[0_2px_15px_-3px_rgba(0,0,0,0.07),0_10px_20px_-2px_rgba(0,0,0,0.04)] dark:bg-neutral-700">
<div class="relative overflow-hidden bg-cover bg-no-repeat" data-te-ripple-init data-te-ripple-color="light">
<img class="rounded-t-lg" src="./image/ser5.jpg" alt="" />
<a href="#!">
<div
class="absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[hsla(0,0%,98%,0.15)] bg-fixed opacity-0 transition duration-300 ease-in-out hover:opacity-100">
</div>
</a>
</div>
<div class="p-6">
<h5 class="mb-2 text-xl font-medium leading-tight text-neutral-800 dark:text-neutral-50">
Financial Investment
</h5>
<p class="mb-4 text-base text-neutral-600 dark:text-neutral-200">
Some quick example text to build on the card title and make up the
bulk of the card's content.
</p>
<button type="button"
class="inline-block rounded bg-primary px-6 pb-2 pt-2.5 text-xs font-medium uppercase leading-normal text-white shadow-[0_4px_9px_-4px_#3b71ca] transition duration-150 ease-in-out hover:bg-primary-600 hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:bg-primary-600 focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:outline-none focus:ring-0 active:bg-primary-700 active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] dark:shadow-[0_4px_9px_-4px_rgba(59,113,202,0.5)] dark:hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)]"
data-te-ripple-init data-te-ripple-color="light">
Get in touch
</button>
</div>
</div>
<div
class="block rounded-lg bg-white shadow-[0_2px_15px_-3px_rgba(0,0,0,0.07),0_10px_20px_-2px_rgba(0,0,0,0.04)] dark:bg-neutral-700">
<div class="relative overflow-hidden bg-cover bg-no-repeat" data-te-ripple-init data-te-ripple-color="light">
<img class="rounded-t-lg" src="./image/web6.png" alt="" />
<a href="#!">
<div
class="absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[hsla(0,0%,98%,0.15)] bg-fixed opacity-0 transition duration-300 ease-in-out hover:opacity-100">
</div>
</a>
</div>
<div class="p-6">
<h5 class="mb-2 text-xl font-medium leading-tight text-neutral-800 dark:text-neutral-50">
Financial Management
</h5>
<p class="mb-4 text-base text-neutral-600 dark:text-neutral-200">
Some quick example text to build on the card title and make up the
bulk of the card's content.
</p>
<button type="button"
class="inline-block rounded bg-primary px-6 pb-2 pt-2.5 text-xs font-medium uppercase leading-normal text-white shadow-[0_4px_9px_-4px_#3b71ca] transition duration-150 ease-in-out hover:bg-primary-600 hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:bg-primary-600 focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:outline-none focus:ring-0 active:bg-primary-700 active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] dark:shadow-[0_4px_9px_-4px_rgba(59,113,202,0.5)] dark:hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)]"
data-te-ripple-init data-te-ripple-color="light">
Get in touch
</button>
</div>
</div>
</div>
</div>
<div class="section5" id="section5">
<h3>Pricing</h3>
<div class="prices">
<div class="box">
<h4>Basic</h4>
<br>
<h5>$47 <span>/year</span></h5>
<p><i class="fa-solid fa-check"></i> Officia quaerat eaque neque</p>
<p><i class="fa-solid fa-check"></i> Possimus aut consequuntur incidunt</p>
<p><i class="fa-solid fa-check"></i> Lorem ipsum dolor sit amet</p>
<p><i class="fa-solid fa-check"></i> Consectetur adipisicing elit
</p>
<p><i class="fa-solid fa-check"></i> Dolorum esse odio quas architecto sint</p>
</div>
<div class="box">
<h4>Premium</h4>
<br>
<h5>$200 <span>/year</span></h5>
<p><i class="fa-solid fa-check"></i> Officia quaerat eaque neque</p>
<p><i class="fa-solid fa-check"></i> Possimus aut consequuntur incidunt</p>
<p><i class="fa-solid fa-check"></i> Lorem ipsum dolor sit amet</p>
<p><i class="fa-solid fa-check"></i> Consectetur adipisicing elit
</p>
<p><i class="fa-solid fa-check"></i> Dolorum esse odio quas architecto sint</p>
</div>
<div class="box">
<h4>Professional</h4>
<br>
<h5>$700 <span>/year</span></h5>
<p><i class="fa-solid fa-check"></i> Officia quaerat eaque neque</p>
<p><i class="fa-solid fa-check"></i> Possimus aut consequuntur incidunt</p>
<p><i class="fa-solid fa-check"></i> Lorem ipsum dolor sit amet</p>
<p><i class="fa-solid fa-check"></i> Consectetur adipisicing elit
</p>
<p><i class="fa-solid fa-check"></i> Dolorum esse odio quas architecto sint</p>
</div>
</div>
</div>
<div class="section6" id="section6">
<h3>Frequently Ask Questions</h3>
<div class="boxes">
<div class="box">
<h4>Can I accept both Paypal and Stripe?</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquam assumenda eum blanditiis perferendis.</p>
</div>
<div class="box">
<h4>Where are you from?</h4>
<p>Voluptatum nobis obcaecati perferendis dolor totam unde dolores quod maxime corporis officia et. Distinctio
assumenda minima maiores.</p>
</div>
<div class="box">
<h4>What available is refund period?</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquam assumenda eum blanditiis perferendis.</p>
</div>
<div class="box">
<h4>What is your opening time?</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquam assumenda eum blanditiis perferendis.</p>
</div>
<div class="box">
<h4>Can I accept both Paypal and Stripe?</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquam assumenda eum blanditiis perferendis.</p>
</div>
<div class="box">
<h4>Can I accept both Paypal and Stripe?</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquam assumenda eum blanditiis perferendis.</p>
</div>
<div class="box">
<h4>Can I accept both Paypal and Stripe?</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquam assumenda eum blanditiis perferendis.</p>
</div>
<div class="box">
<h4>Can I accept both Paypal and Stripe?</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquam assumenda eum blanditiis perferendis.</p>
</div>
</div>
</div>
<div class="section7" id="section7">
<div class="box">
<div
class="block rounded-lg bg-white p-6 shadow-[0_2px_15px_-3px_rgba(0,0,0,0.07),0_10px_20px_-2px_rgba(0,0,0,0.04)] dark:bg-neutral-700">
<div class="icon">
<i class="fa-solid fa-sitemap"></i>
</div>
<h5 class="mb-2 text-xl font-medium leading-tight text-neutral-800 dark:text-neutral-50">
Card title
</h5>
<p class="mb-4 text-base text-neutral-600 dark:text-neutral-200">
Some quick example text to build on the card title and make up the
bulk of the card's content.
</p>
<button type="button"
class="inline-block rounded bg-primary px-6 pb-2 pt-2.5 text-xs font-medium uppercase leading-normal text-white shadow-[0_4px_9px_-4px_#3b71ca] transition duration-150 ease-in-out hover:bg-primary-600 hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:bg-primary-600 focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:outline-none focus:ring-0 active:bg-primary-700 active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] dark:shadow-[0_4px_9px_-4px_rgba(59,113,202,0.5)] dark:hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)]"
data-te-ripple-init data-te-ripple-color="light">
Button
</button>
</div>
<div
class="block rounded-lg bg-white p-6 shadow-[0_2px_15px_-3px_rgba(0,0,0,0.07),0_10px_20px_-2px_rgba(0,0,0,0.04)] dark:bg-neutral-700">
<div class="icon">
<i class="fa-brands fa-sitrox"></i>
</div>
<h5 class="mb-2 text-xl font-medium leading-tight text-neutral-800 dark:text-neutral-50">
Card title
</h5>
<p class="mb-4 text-base text-neutral-600 dark:text-neutral-200">
Some quick example text to build on the card title and make up the
bulk of the card's content.
</p>
<button type="button"
class="inline-block rounded bg-primary px-6 pb-2 pt-2.5 text-xs font-medium uppercase leading-normal text-white shadow-[0_4px_9px_-4px_#3b71ca] transition duration-150 ease-in-out hover:bg-primary-600 hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:bg-primary-600 focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] focus:outline-none focus:ring-0 active:bg-primary-700 active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.3),0_4px_18px_0_rgba(59,113,202,0.2)] dark:shadow-[0_4px_9px_-4px_rgba(59,113,202,0.5)] dark:hover:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:focus:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)] dark:active:shadow-[0_8px_9px_-4px_rgba(59,113,202,0.2),0_4px_18px_0_rgba(59,113,202,0.1)]"
data-te-ripple-init data-te-ripple-color="light">
Button
</button>
</div>
</div>
<div class="image">
<img src="./image/des2.jpg" alt="">
</div>
</div>
<div class="section8" id="section8">
<h3>Our Blog</h3>
<div class="boxes">
<div
class="block rounded-lg bg-white shadow-[0_2px_15px_-3px_rgba(0,0,0,0.07),0_10px_20px_-2px_rgba(0,0,0,0.04)] dark:bg-neutral-700">
<div class="relative overflow-hidden bg-cover bg-no-repeat" data-te-ripple-init data-te-ripple-color="light">
<img class="rounded-t-lg" src="./image/member1png.png" alt="" />
<a href="#!">
<div
class="absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[hsla(0,0%,98%,0.15)] bg-fixed opacity-0 transition duration-300 ease-in-out hover:opacity-100">
</div>
</a>
</div>
<div class="p-6">
<h5 class="mb-2 text-xl font-medium leading-tight text-neutral-800 dark:text-neutral-50">
Repudiandae Quisquam Eaque Dolore
</h5>
<div class="info" style="padding: 10px 0; color: rgb(145, 144, 144);">
James Phelps • Jan 18, 2019• <span style="color: #5c5cf4;">News</span>
</div>
<p class="mb-4 text-base text-neutral-600 dark:text-neutral-200">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus eligendi nobis ea maiores sapiente veritatis
reprehenderit suscipit quaerat rerum voluptatibus a eius.
</p>
<a href="#">Continue Reading...</a>
</div>
</div>
<div
class="block rounded-lg bg-white shadow-[0_2px_15px_-3px_rgba(0,0,0,0.07),0_10px_20px_-2px_rgba(0,0,0,0.04)] dark:bg-neutral-700">
<div class="relative overflow-hidden bg-cover bg-no-repeat" data-te-ripple-init data-te-ripple-color="light">
<img class="rounded-t-lg" src="./image/member3.png" alt="" />
<a href="#!">
<div
class="absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[hsla(0,0%,98%,0.15)] bg-fixed opacity-0 transition duration-300 ease-in-out hover:opacity-100">
</div>
</a>
</div>
<div class="p-6">
<h5 class="mb-2 text-xl font-medium leading-tight text-neutral-800 dark:text-neutral-50">
Repudiandae Quisquam Eaque Dolore
</h5>
<div class="info" style="padding: 10px 0; color: rgb(145, 144, 144);">
James Phelps • Jan 18, 2019• <span style="color: #5c5cf4;">News</span>
</div>
<p class="mb-4 text-base text-neutral-600 dark:text-neutral-200">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus eligendi nobis ea maiores sapiente veritatis
reprehenderit suscipit quaerat rerum voluptatibus a eius.
</p>
<a href="#">Continue Reading...</a>
</div>
</div>
<div
class="block rounded-lg bg-white shadow-[0_2px_15px_-3px_rgba(0,0,0,0.07),0_10px_20px_-2px_rgba(0,0,0,0.04)] dark:bg-neutral-700">
<div class="relative overflow-hidden bg-cover bg-no-repeat" data-te-ripple-init data-te-ripple-color="light">
<img class="rounded-t-lg" src="./image/member4.png" alt="" />
<a href="#!">
<div
class="absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[hsla(0,0%,98%,0.15)] bg-fixed opacity-0 transition duration-300 ease-in-out hover:opacity-100">
</div>
</a>
</div>
<div class="p-6">
<h5 class="mb-2 text-xl font-medium leading-tight text-neutral-800 dark:text-neutral-50">
Repudiandae Quisquam Eaque Dolore
</h5>
<div class="info" style="padding: 10px 0; color: rgb(145, 144, 144);">
James Phelps • Jan 18, 2019• <span style="color: #5c5cf4;">News</span>
</div>
<p class="mb-4 text-base text-neutral-600 dark:text-neutral-200">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus eligendi nobis ea maiores sapiente veritatis
reprehenderit suscipit quaerat rerum voluptatibus a eius.
</p>
<a href="#">Continue Reading...</a>
</div>
</div>
</div>
</div>
<div class="section9" id="section9">
<h3>Contact Us</h3>
<div class="boxes">
<div class="box">
<i class="fa-solid fa-location-dot"></i>
<a href="">203 Fake St. Mountain View, San Francisco, California, USA</a>
</div>
<div class="box">
<i class="fa-solid fa-phone"></i>
<a href="">+1 232 3235 324</a>
</div>
<div class="box">
<i class="fa-regular fa-envelope"></i>
<a href="">ossama@domain.com</a>
</div>
</div>
</div>
<div class="section10">
<div class="form-container">
<form class="form">
<div class="form-group">
<label for="email">Enter Email</label>
<input type="text" id="email" name="email" required="">
</div>
<div class="form-group">
<label for="textarea">How Can We Help You?</label>
<textarea name="textarea" id="textarea" rows="10" cols="50" required=""> </textarea>
</div>
<button class="form-submit-btn" type="submit">Send</button>
</form>
</div>
</div>
<footer>
<!-- Footer section with social media icons and newsletter sign-up -->
<footer class="bg-neutral-900 text-center text-white">
<div class="container px-6 pt-6" style="margin: 0 auto;">
<!-- Social media icons container -->
<div class="mb-6 flex justify-center">
<a href="#!" type="button"
class="m-1 h-9 w-9 rounded-full border-2 border-white uppercase leading-normal text-white transition duration-150 ease-in-out hover:bg-black hover:bg-opacity-5 focus:outline-none focus:ring-0"
data-te-ripple-init data-te-ripple-color="light">
<svg xmlns="http://www.w3.org/2000/svg" class="mx-auto h-full w-4" fill="currentColor" viewBox="0 0 24 24">
<path
d="M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z" />
</svg>
</a>
<a href="#!" type="button"
class="m-1 h-9 w-9 rounded-full border-2 border-white uppercase leading-normal text-white transition duration-150 ease-in-out hover:bg-black hover:bg-opacity-5 focus:outline-none focus:ring-0"
data-te-ripple-init data-te-ripple-color="light">
<svg xmlns="http://www.w3.org/2000/svg" class="mx-auto h-full w-4" fill="currentColor" viewBox="0 0 24 24">
<path
d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z" />
</svg>
</a>
<a href="#!" type="button"
class="m-1 h-9 w-9 rounded-full border-2 border-white uppercase leading-normal text-white transition duration-150 ease-in-out hover:bg-black hover:bg-opacity-5 focus:outline-none focus:ring-0"
data-te-ripple-init data-te-ripple-color="light">
<svg xmlns="http://www.w3.org/2000/svg" class="mx-auto h-full w-4" fill="currentColor" viewBox="0 0 24 24">
<path
d="M7 11v2.4h3.97c-.16 1.029-1.2 3.02-3.97 3.02-2.39 0-4.34-1.979-4.34-4.42 0-2.44 1.95-4.42 4.34-4.42 1.36 0 2.27.58 2.79 1.08l1.9-1.83c-1.22-1.14-2.8-1.83-4.69-1.83-3.87 0-7 3.13-7 7s3.13 7 7 7c4.04 0 6.721-2.84 6.721-6.84 0-.46-.051-.81-.111-1.16h-6.61zm0 0 17 2h-3v3h-2v-3h-3v-2h3v-3h2v3h3v2z"
fill-rule="evenodd" clip-rule="evenodd" />
</svg>
</a>
<a href="#!" type="button"
class="m-1 h-9 w-9 rounded-full border-2 border-white uppercase leading-normal text-white transition duration-150 ease-in-out hover:bg-black hover:bg-opacity-5 focus:outline-none focus:ring-0"
data-te-ripple-init data-te-ripple-color="light">
<svg xmlns="http://www.w3.org/2000/svg" class="mx-auto h-full w-4" fill="currentColor" viewBox="0 0 24 24">
<path
d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z" />
</svg>
</a>
<a href="#!" type="button"
class="m-1 h-9 w-9 rounded-full border-2 border-white uppercase leading-normal text-white transition duration-150 ease-in-out hover:bg-black hover:bg-opacity-5 focus:outline-none focus:ring-0"
data-te-ripple-init data-te-ripple-color="light">
<svg xmlns="http://www.w3.org/2000/svg" class="mx-auto h-full w-4" fill="currentColor" viewBox="0 0 24 24">
<path
d="M4.98 3.5c0 1.381-1.11 2.5-2.48 2.5s-2.48-1.119-2.48-2.5c0-1.38 1.11-2.5 2.48-2.5s2.48 1.12 2.48 2.5zm.02 4.5h-5v16h5v-16zm7.982 0h-4.968v16h4.969v-8.399c0-4.67 6.029-5.052 6.029 0v8.399h4.988v-10.131c0-7.88-8.922-7.593-11.018-3.714v-2.155z" />
</svg>
</a>
<a href="#!" type="button"
class="m-1 h-9 w-9 rounded-full border-2 border-white uppercase leading-normal text-white transition duration-150 ease-in-out hover:bg-black hover:bg-opacity-5 focus:outline-none focus:ring-0"
data-te-ripple-init data-te-ripple-color="light">
<svg xmlns="http://www.w3.org/2000/svg" class="mx-auto h-full w-4" fill="currentColor" viewBox="0 0 24 24">
<path
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" />
</svg>
</a>
</div>
<!-- Newsletter sign-up form -->
<div>
<form action="">
<div class="gird-cols-1 grid items-center justify-center gap-4 md:grid-cols-3">
<div class="md:mb-6 md:ml-auto">
<p class="">
<strong>Sign up and join us </strong>
</p>
</div>
<!-- Newsletter sign-up input field -->
<div class="relative md:mb-6" data-te-input-wrapper-init>
<input style="border-bottom: 1px solid white;" type="text"
class="peer block min-h-[auto] w-full rounded border-0 bg-transparent px-3 py-[0.32rem] leading-[1.6] text-neutral-200 outline-none transition-all duration-200 ease-linear focus:placeholder:opacity-100 data-[te-input-state-active]:placeholder:opacity-100 motion-reduce:transition-none dark:text-neutral-200 dark:placeholder:text-neutral-200 [&:not([data-te-input-placeholder-active])]:placeholder:opacity-0"
id="exampleFormControlInput1" placeholder="Email address" />
<label for="exampleFormControlInput1"
class="pointer-events-none absolute left-3 top-0 mb-0 max-w-[90%] origin-[0_0] truncate pt-[0.37rem] leading-[1.6] text-neutral-200 transition-all duration-200 ease-out peer-focus:-translate-y-[0.9rem] peer-focus:scale-[0.8] peer-focus:text-neutral-200 peer-data-[te-input-state-active]:-translate-y-[0.9rem] peer-data-[te-input-state-active]:scale-[0.8] motion-reduce:transition-none dark:text-neutral-200 dark:peer-focus:text-neutral-200">Email
address
</label>
</div>
<!-- Newsletter sign-up submit button -->
<div class="mb-6 md:mr-auto">
<button type="submit"
class="inline-block rounded border-2 border-neutral-50 px-6 pb-[6px] pt-2 text-xs font-medium uppercase leading-normal text-neutral-50 transition duration-150 ease-in-out hover:border-neutral-100 hover:bg-neutral-500 hover:bg-opacity-10 hover:text-neutral-100 focus:border-neutral-100 focus:text-neutral-100 focus:outline-none focus:ring-0 active:border-neutral-200 active:text-neutral-200 dark:hover:bg-neutral-100 dark:hover:bg-opacity-10"
data-te-ripple-init data-te-ripple-color="light">
Subscribe
</button>
</div>
</div>
</form>
</div>
<!-- Copyright information -->
<div class="mb-6">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sunt
distinctio earum repellat quaerat voluptatibus placeat nam,
commodi optio pariatur est quia magnam eum harum corrupti dicta,
aliquam sequi voluptate quas.
</p>
</div>
<br><br><br>
<!-- Links section -->
<div class="grid md:grid-cols-2 lg:grid-cols-4" style="gap: 30px;">
<div class="mb-6">
<h5 style="font-size: 25px;" class="mb-2.5 font-bold uppercase">About Us</h5>
<br>
<ul class="mb-0 list-none">
<li>
<a style="color: rgb(193, 193, 193);" href="#!" class="text-white">Lorem ipsum dolor sit amet
consectetur adipisicing elit. Neque facere laudantium magnam voluptatum autem. Amet aliquid nesciunt
veritatis aliquam.</a>
</li>
</ul>
</div>
<div class="mb-6">
<h5 style="font-size: 25px;" class="mb-2.5 font-bold uppercase">Quick Links</h5>
<br>
<ul class="mb-0 list-none">
<li>
<a style="color: rgb(193, 193, 193);" href="#!" class="text-white">About Us</a>
</li>
<li>
<a href="#!" class="text-white" style="color: rgb(193, 193, 193);">Services</a>
</li>
<li>
<a href="#!" class="text-white" style="color: rgb(193, 193, 193);">Contact Us</a>
</li>
</ul>
</div>
<div class="mb-6">
<h5 style="font-size: 25px;" class="mb-2.5 font-bold uppercase">Follow Us</h5>
<br>
<ul class="mb-0 list-none" style="display: flex; justify-content: center; gap: 10px; font-size: 23px;">
<li>
<a href="#!" class="text-white"> <i class="fa-brands fa-facebook"></i></a>
</li>
<li>
<a href="#!" class="text-white"><i class="fa-brands fa-twitter"></i></a>
</li>
<li>
<a href="#!" class="text-white"><i class="fa-brands fa-instagram"></i></a>
</li>
<li>
<a href="#!" class="text-white"><i class="fa-brands fa-linkedin"></i></a>
</li>
</ul>
</div>
<div class="mb-6">
<h5 style="text-align: center; font-size: 25px;" class="mb-2.5 font-bold uppercase">Subscribe Newsletter
</h5>
<br>
<div class="input-group">
<input type="email" class="input" id="Email" name="Email" placeholder="uiverse@verse.io"
autocomplete="off">
<input class="button--submit" value="Subscribe" type="submit">
</div>
</div>
</div>
</div>
<!-- Copyright section -->
<div class="p-4 text-center" style="background-color: rgba(0, 0, 0, 0.2)">
© 2023 Copyright:
<a class="text-white" href="https://tailwind-elements.com/">Code Dz</a>
</div>
</footer>
</footer>
<script src="./js/main.js"></script>
</body>
</html>