-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
878 lines (827 loc) · 48.8 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">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>KGXperience | Innovation Cell</title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<link rel="stylesheet" href="https://unpkg.com/tailwindcss@2.2.19/dist/tailwind.min.css" />
<!--Replace with your tailwind.css once created-->
<link href="https://unpkg.com/@tailwindcss/custom-forms/dist/custom-forms.min.css" rel="stylesheet" />
<link href="css/index.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/c55e24ad37.js" crossorigin="anonymous"></script>
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
html {
font-family: "JetBrains Mono", monospace, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
</style>
</head>
<body class="leading-normal tracking-normal text-indigo-400 bg-cover bg-fixed">
<div class="h-full">
<!--Nav-->
<nav class="border-gray-200 dark:bg-gray-900">
<div class="max-w-screen-xl flex flex-wrap items-center justify-between mx-auto p-4">
<a href="#" class="flex items-center space-x-3 rtl:space-x-reverse">
<img src="Images/logos/kgx_white-logo.svg" class="h-8 lg:h-10" alt="kgx-logo" />
</a>
<div class="flex md:order-2 space-x-3 md:space-x-0 rtl:space-x-reverse">
<img src="Images/logos/KGISL EDU FINAL TRANSPARENT LOGO.png" class="w-20 hidden md:block lg:block" alt="kgisl-logo" />
<button data-collapse-toggle="navbar-cta" type="button"
class="navbar-burger inline-flex items-center p-2 w-10 h-10 justify-center text-sm text-gray-500 rounded-lg md:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600"
aria-controls="navbar-cta" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg class="w-5 h-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 17 14">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M1 1h15M1 7h15M1 13h15" />
</svg>
</button>
</div>
<div class="items-center justify-between hidden w-full md:flex md:w-auto md:order-1" id="navbar-cta">
<ul
class="flex flex-col font-medium p-4 md:p-0 mt-4 border border-gray-100 rounded-lg md:space-x-8 rtl:space-x-reverse md:flex-row md:mt-0 md:border-0">
<li>
<a href="#" class="block py-2 px-3 md:p-0 text-white hover:text-blue-700" aria-current="page">Home</a>
</li>
<li>
<a href="#" class="block py-2 px-3 md:p-0 rounded text-white hover:text-blue-700">About</a>
</li>
<li>
<a href="#" class="block py-2 px-3 md:p-0 rounded text-white hover:text-blue-700">Services</a>
</li>
<li>
<a href="#" class="block py-2 px-3 md:p-0 rounded text-white hover:text-blue-700">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="navbar-menu relative z-50 hidden">
<div class="navbar-backdrop fixed inset-0 bg-gray-800 opacity-25"></div>
<nav class="fixed top-0 left-0 bottom-0 bg-gray-800 flex flex-col w-5/6 max-w-sm py-6 px-6 overflow-y-auto">
<div>
<ul>
<li class="mb-1 flex justify-end" type="button">
<i class="navbar-close fa-solid fa-xmark text-lg cursor-pointer"></i>
</li>
<li class="mb-1">
<a class="block p-4 text-sm font-semibold text-gray-400 hover:bg-blue-50 hover:text-blue-600 rounded"
href="#">Home</a>
</li>
<li class="mb-1">
<a class="block p-4 text-sm font-semibold text-gray-400 hover:bg-blue-50 hover:text-blue-600 rounded"
href="#">About Us</a>
</li>
<li class="mb-1">
<a class="block p-4 text-sm font-semibold text-gray-400 hover:bg-blue-50 hover:text-blue-600 rounded"
href="#">Services</a>
</li>
<li class="mb-1">
<a class="block p-4 text-sm font-semibold text-gray-400 hover:bg-blue-50 hover:text-blue-600 rounded"
href="#">Pricing</a>
</li>
<li class="mb-1">
<a class="block p-4 text-sm font-semibold text-gray-400 hover:bg-blue-50 hover:text-blue-600 rounded"
href="#">Contact</a>
</li>
</ul>
</div>
<div class="flex justify-center items-end h-full">
<a href="#" class="flex items-center space-x-3 rtl:space-x-reverse">
<img src="Images/logos/KGISL EDU FINAL TRANSPARENT LOGO.png" class="w-20" alt="kgx-logo" />
</a>
</div>
</nav>
</div>
<!-- Section: Hero Section -->
<section class="hero-section flex justify-center items-center">
<!-- Jumbotron -->
<!-- <div class="container">
<h1 class="heading" data-target-resolver></h1>
</div> -->
<!-- Jumbotron -->
<!-- IDX alike hero -->
<div>
<h1 class="header">
What if your dev experience was
</h1>
<table class="fancy-table">
<tr>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
</tr>
<tr>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
</tr>
<tr>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td>
A
</td>
<td class="hide">
</td>
</tr>
</table>
</div>
<!-- IDX alike hero -->
</section>
<!-- Section: Hero Section -->
<main>
<!-- scroll down -->
<section>
<div class="py-8 lg:py-16 mx-auto max-w-screen-xl px-4 flex justify-center">
<a href="#about" class="squiggly-arrow">~></a>
</div>
</section>
<!-- scroll down -->
<!-- About us -->
<section class="flex items-center py-8 font-poppins dark:bg-gray-800 " id="about">
<div class="justify-center flex-1 max-w-7xl px-4 py-4 mx-auto lg:py-6 md:px-3">
<div class="flex flex-wrap items-center">
<div class="w-full px-4 mb-10 xl:w-1/2 lg:mb-8">
<div class="flex flex-wrap">
<div class="w-full px-4 md:w-1/2">
<img src="https://i.postimg.cc/YCJW7jv8/pexels-fauxels-3184357.jpg" alt=""
class="object-cover w-full mb-6 rounded-lg h-80">
<img src="https://i.postimg.cc/j5L5bX2d/pexels-andrea-piacquadio-3757946.jpg" alt=""
class="object-cover w-full rounded-lg h-80">
</div>
<div class="w-full px-4 md:w-1/2 xl:mt-11">
<img src="https://i.postimg.cc/sXJQ5cw0/pexels-pixabay-256455-1.jpg" alt=""
class="object-cover w-full mb-6 rounded-lg h-80">
<img src="https://i.postimg.cc/vHTg6593/aqq.jpg" alt="" class="object-cover w-full rounded-lg h-80">
</div>
</div>
</div>
<div class="w-full px-4 mb-10 xl:w-1/2 lg:mb-8">
<h1 class="mb-5 text-3xl font-semibold text-white md:text-center md:text-5xl">Why choose us</h1>
<p class="text-xl text-gray-100 md:text-center md:text-2xl">
We are providing a better facility
</p>
<p class="mb-4 mt-4 text-base leading-7 text-gray-500 dark:text-gray-400">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut
labore et dolore magna aliqua. Ut enim ad minim veniam
</p>
<ul class="mb-10">
<li class="flex items-start mb-4 text-base text-gray-600 dark:text-gray-400">
<span class="mr-3 text-blue-500 dark:text-blue-400 ">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="w-6 h-6 bi bi-1-circle-fill" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0ZM9.283 4.002V12H7.971V5.338h-.065L6.072 6.656V5.385l1.899-1.383h1.312Z" />
</svg>
</span>
We believe the power of like-minded individuals is immense. By focusing on deep tech, we not only solve problems but also empower our community through knowledge.
</li>
<li class="flex items-start mb-4 text-base text-gray-600 dark:text-gray-400">
<span class="mr-3 text-blue-500 dark:text-blue-400">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="w-6 h-6 bi bi-2-circle-fill" viewBox="0 0 16 16">
<path
d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0ZM6.646 6.24c0-.691.493-1.306 1.336-1.306.756 0 1.313.492 1.313 1.236 0 .697-.469 1.23-.902 1.705l-2.971 3.293V12h5.344v-1.107H7.268v-.077l1.974-2.22.096-.107c.688-.763 1.287-1.428 1.287-2.43 0-1.266-1.031-2.215-2.613-2.215-1.758 0-2.637 1.19-2.637 2.402v.065h1.271v-.07Z" />
</svg>
</span>
Shared Vision, Shared Success: Unity, integrity, and collaboration define our approach to achieving common goals and fostering innovation.
</li>
<li class="flex items-start mb-4 text-base text-gray-600 dark:text-gray-400">
<span class="mr-3 text-blue-500 dark:text-blue-400">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="w-6 h-6 bi bi-3-circle-fill" viewBox="0 0 16 16">
<path
d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0Zm-8.082.414c.92 0 1.535.54 1.541 1.318.012.791-.615 1.36-1.588 1.354-.861-.006-1.482-.469-1.54-1.066H5.104c.047 1.177 1.05 2.144 2.754 2.144 1.653 0 2.954-.937 2.93-2.396-.023-1.278-1.031-1.846-1.734-1.916v-.07c.597-.1 1.505-.739 1.482-1.876-.03-1.177-1.043-2.074-2.637-2.062-1.675.006-2.59.984-2.625 2.12h1.248c.036-.556.557-1.054 1.348-1.054.785 0 1.348.486 1.348 1.195.006.715-.563 1.237-1.342 1.237h-.838v1.072h.879Z" />
</svg>
</span>
Catalyst for Change: Nurturing talent, forging paths in innovation, and shaping the future through our dedicated commitment to excellence.
</li>
<li class="flex items-start mb-4 text-base text-gray-600 dark:text-gray-400">
<span class="mr-3 text-blue-500 dark:text-blue-400 ">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="w-6 h-6 bi bi-4-circle-fill" viewBox="0 0 16 16">
<path
d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0ZM7.519 5.057c-.886 1.418-1.772 2.838-2.542 4.265v1.12H8.85V12h1.26v-1.559h1.007V9.334H10.11V4.002H8.176c-.218.352-.438.703-.657 1.055ZM6.225 9.281v.053H8.85V5.063h-.065c-.867 1.33-1.787 2.806-2.56 4.218Z" />
</svg>
</span>
Community-Driven ImpactA community of tech enthusiasts fostering creativity, solving real-world problems, and making a positive impact on the world.
</li>
</ul>
<!-- Button commented for letter use -->
<!-- <a href="#"
class="px-4 py-2 text-gray-100 bg-blue-500 rounded-md dark:bg-blue-400 dark:hover:bg-blue-500 hover:bg-blue-600">
Learn more
</a> -->
</div>
</div>
</div>
</section>
<!-- End About us -->
<!-- Technology -->
<section class="py-8 max-w-7xl mx-auto">
<div class="px-6 md:px-12 xl:px-6">
<div>
<!-- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"
class="w-6 h-6 text-secondary">
<path fill-rule="evenodd"
d="M9 4.5a.75.75 0 01.721.544l.813 2.846a3.75 3.75 0 002.576 2.576l2.846.813a.75.75 0 010 1.442l-2.846.813a3.75 3.75 0 00-2.576 2.576l-.813 2.846a.75.75 0 01-1.442 0l-.813-2.846a3.75 3.75 0 00-2.576-2.576l-2.846-.813a.75.75 0 010-1.442l2.846-.813A3.75 3.75 0 007.466 7.89l.813-2.846A.75.75 0 019 4.5zM18 1.5a.75.75 0 01.728.568l.258 1.036c.236.94.97 1.674 1.91 1.91l1.036.258a.75.75 0 010 1.456l-1.036.258c-.94.236-1.674.97-1.91 1.91l-.258 1.036a.75.75 0 01-1.456 0l-.258-1.036a2.625 2.625 0 00-1.91-1.91l-1.036-.258a.75.75 0 010-1.456l1.036-.258a2.625 2.625 0 001.91-1.91l.258-1.036A.75.75 0 0118 1.5zM16.5 15a.75.75 0 01.712.513l.394 1.183c.15.447.5.799.948.948l1.183.395a.75.75 0 010 1.422l-1.183.395c-.447.15-.799.5-.948.948l-.395 1.183a.75.75 0 01-1.422 0l-.395-1.183a1.5 1.5 0 00-.948-.948l-1.183-.395a.75.75 0 010-1.422l1.183-.395c.447-.15.799-.5.948-.948l.395-1.183A.75.75 0 0116.5 15z"
clip-rule="evenodd"></path>
</svg> -->
<h1 class="mb-5 text-3xl font-semibold text-white md:text-center md:text-5xl">Our Work</h1>
<p class="text-xl text-gray-100 md:text-center md:text-2xl">We have built many products and some of them are below</p>
</div>
<div class="mt-16 grid gap-6 overflow-hidden text-gray-600 sm:grid-cols-2 lg:grid-cols-3">
<div
class="group relative rounded-2xl bg-gray-800 transition hover:z-[1] hover:shadow-2xl hover:shadow-gray-600/10">
<div class="relative space-y-8 py-12 p-8">
<img src="https://www.svgrepo.com/show/164986/logo.svg" loading="lazy" width="200" height="200"
class="w-12 h-12 rounded-full" style="color:transparent">
<div class="space-y-2">
<h5 class="text-xl font-semibold text-white transition group-hover:text-secondary">Xyz.com</h5>
<p class="text-gray-300">Platform to convert Domains into Content websites.</p>
</div>
</div>
</div>
<div
class="group relative rounded-2xl bg-gray-800 transition hover:z-[1] hover:shadow-2xl hover:shadow-gray-600/10">
<div class="relative space-y-8 py-12 p-8">
<img src="https://www.svgrepo.com/show/120853/logo.svg" loading="lazy" width="200" height="200"
class="w-12 h-12 rounded-full" style="color:transparent">
<div class="space-y-2">
<h5 class="text-xl font-semibold text-white transition group-hover:text-secondary">ABC.com</h5>
<p class="text-gray-300">Platform to create dynamic widgets for websites.</p>
</div>
</div>
</div>
<div
class="group relative rounded-2xl bg-gray-800 transition hover:z-[1] hover:shadow-2xl hover:shadow-gray-600/10">
<div class="relative space-y-8 py-12 p-8">
<img src="https://www.svgrepo.com/show/120852/logo.svg" loading="lazy" width="200" height="200"
class="w-12 h-12 rounded-full" style="color:transparent">
<div class="space-y-2">
<h5 class="text-xl font-semibold text-white transition group-hover:text-secondary">ASD.com</h5>
<p class="text-gray-300">API SaaS Platform that provides API Suit to help you ship fast.</p>
</div>
</div>
</div>
<div
class="group relative rounded-2xl bg-gray-800 transition hover:z-[1] hover:shadow-2xl hover:shadow-gray-600/10">
<div class="relative space-y-8 py-12 p-8">
<img src="https://www.svgrepo.com/show/120850/logo.svg" loading="lazy" width="200" height="200"
class="w-12 h-12 rounded-full" style="color:transparent">
<div class="space-y-2">
<h5 class="text-xl font-semibold text-white transition group-hover:text-secondary">TMK.co</h5>
<p class="text-gray-300">Chrome Extension that lets you add ChatGPT on any website</p>
</div>
</div>
</div>
<!-- <div
class="group relative rounded-2xl bg-gray-800 transition hover:z-[1] hover:shadow-2xl hover:shadow-gray-600/10">
<div class="relative space-y-8 py-12 p-8">
<img src="https://www.svgrepo.com/show/120850/logo.svg" loading="lazy" width="200" height="200"
class="w-12 h-12 rounded-full" style="color:transparent">
<div class="space-y-2">
<h5 class="text-xl font-semibold text-white transition group-hover:text-secondary">TMK.co</h5>
<p class="text-gray-300">Chrome Extension that lets you add ChatGPT on any website</p>
</div>
</div>
</div> -->
<!-- <div
class="group relative rounded-2xl bg-gray-800 transition hover:z-[1] hover:shadow-2xl hover:shadow-gray-600/10">
<div class="relative space-y-8 py-12 p-8">
<img src="https://www.svgrepo.com/show/120850/logo.svg" loading="lazy" width="200" height="200"
class="w-12 h-12 rounded-full" style="color:transparent">
<div class="space-y-2">
<h5 class="text-xl font-semibold text-white transition group-hover:text-secondary">TMK.co</h5>
<p class="text-gray-300">Chrome Extension that lets you add ChatGPT on any website</p>
</div>
</div>
</div> -->
<div
class="group relative rounded-2xl bg-gray-800 transition hover:z-[1] hover:shadow-2xl hover:shadow-gray-600/10">
<div class="relative space-y-8 py-12 p-8">
<img src="https://www.svgrepo.com/show/120850/logo.svg" loading="lazy" width="200" height="200"
class="w-12 h-12 rounded-full" style="color:transparent">
<div class="space-y-2">
<h5 class="text-xl font-semibold text-white transition group-hover:text-secondary">TMK.co</h5>
<p class="text-gray-300">Chrome Extension that lets you add ChatGPT on any website</p>
</div>
</div>
</div>
<div
class="group relative rounded-2xl bg-gray-800 transition hover:z-[1] hover:shadow-2xl hover:shadow-gray-600/10">
<div class="relative space-y-8 py-12 p-8">
<img src="https://www.svgrepo.com/show/120850/logo.svg" loading="lazy" width="200" height="200"
class="w-12 h-12 rounded-full" style="color:transparent">
<div class="space-y-2">
<h5 class="text-xl font-semibold text-white transition group-hover:text-secondary">TMK.co</h5>
<p class="text-gray-300">Chrome Extension that lets you add ChatGPT on any website</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Technology -->
<!-- Team -->
<section class="py-8 max-w-7xl mx-auto w-full py-8">
<div class="transition duration-500 ease-in-out transform scale-100 translate-x-0 translate-y-0 opacity-100">
<div class="mb-12 space-y-5 md:mb-16 md:text-center">
<h1 class="mb-5 text-3xl font-semibold text-white md:text-center md:text-5xl">
Our Team
</h1>
<p class="text-xl text-gray-100 md:text-center md:text-2xl">
Here's what others have to say about us.
</p>
</div>
</div>
<figure class="relative transition-all duration-300 cursor-pointer group ">
<a href="#">
<img class="h-auto grayscale hover:grayscale-0 max-w-full rounded-2xl filter" src="Images/Teams/Team.jpg"
width="100%" alt="image description">
</a>
<figcaption class="absolute px-4 text-lg text-white bottom-6">
<p>Do you want to get notified when a new component is added to Flowbite?</p>
</figcaption>
</figure>
</section>
<!-- End Team -->
<!-- Testimonials -->
<!-- <section id="testimonies" class="py-8">
<div class="max-w-7xl mx-8 md:mx-10 lg:mx-20 xl:mx-auto">
<div class="transition duration-500 ease-in-out transform scale-100 translate-x-0 translate-y-0 opacity-100">
<div class="mb-12 space-y-5 md:mb-16 md:text-center">
<h1 class="mb-5 text-3xl font-semibold text-white md:text-center md:text-5xl">
It's not just us.
</h1>
<p class="text-xl text-gray-100 md:text-center md:text-2xl">
Here's what others have to say about us.
</p>
</div>
</div>
<div class="grid grid-cols-1 gap-6 sm:grid-cols-2 lg:grid-cols-3 lg:gap-8">
<ul class="space-y-8">
<li class="text-sm leading-6">
<div class="relative group">
<div
class="absolute transition rounded-lg opacity-25 -inset-0 bg-gradient-to-r from-purple-600 to-pink-600">
</div>
<a href="https://twitter.com/tim_cook" class="cursor-pointer">
<div class="relative p-6 space-y-6 rounded-lg bg-slate-800 ring-2 ring-gray-900/5">
<div class="flex items-center space-x-4"><img
src="https://pbs.twimg.com/profile_images/1535420431766671360/Pwq-1eJc_400x400.jpg"
class="w-12 h-12 bg-center bg-cover border rounded-full" alt="Tim Cook">
<div>
<h3 class="text-lg font-semibold text-white">Tim Cook</h3>
<p class="text-gray-500 text-md">CEO of Apple</p>
</div>
</div>
<p class="leading-normal text-gray-300 text-md">Diam quis enim lobortis scelerisque
fermentum dui faucibus in ornare. Donec pretium vulputate sapien nec sagittis
aliquam malesuada bibendum.</p>
</div>
</a>
</div>
</li>
<li class="text-sm leading-6">
<div class="relative group">
<div
class="absolute transition rounded-lg opacity-25 -inset-0 bg-gradient-to-r from-purple-600 to-pink-600">
</div>
<a href="https://twitter.com/tim_cook" class="cursor-pointer">
<div class="relative p-6 space-y-6 rounded-lg bg-slate-800 ring-2 ring-gray-900/5">
<div class="flex items-center space-x-4"><img
src="https://pbs.twimg.com/profile_images/1535420431766671360/Pwq-1eJc_400x400.jpg"
class="w-12 h-12 bg-center bg-cover border rounded-full" alt="Tim Cook">
<div>
<h3 class="text-lg font-semibold text-white">Tim Cook</h3>
<p class="text-gray-500 text-md">CEO of Apple</p>
</div>
</div>
<p class="leading-normal text-gray-300 text-md">Diam quis enim lobortis scelerisque
fermentum dui faucibus in ornare. Donec pretium vulputate sapien nec sagittis
aliquam malesuada bibendum.</p>
</div>
</a>
</div>
</li>
</ul>
<ul class="hidden space-y-8 sm:block">
<li class="text-sm leading-6">
<div class="relative group">
<div
class="absolute transition rounded-lg opacity-25 -inset-0 bg-gradient-to-r from-purple-600 to-pink-600">
</div>
<a href="https://twitter.com/tim_cook" class="cursor-pointer">
<div class="relative p-6 space-y-6 rounded-lg bg-slate-800 ring-2 ring-gray-900/5">
<div class="flex items-center space-x-4"><img
src="https://pbs.twimg.com/profile_images/1535420431766671360/Pwq-1eJc_400x400.jpg"
class="w-12 h-12 bg-center bg-cover border rounded-full" alt="Tim Cook">
<div>
<h3 class="text-lg font-semibold text-white">Tim Cook</h3>
<p class="text-gray-500 text-md">CEO of Apple</p>
</div>
</div>
<p class="leading-normal text-gray-300 text-md">Diam quis enim lobortis scelerisque
fermentum dui faucibus in ornare. Donec pretium vulputate sapien nec sagittis
aliquam malesuada bibendum.</p>
</div>
</a>
</div>
</li>
<li class="text-sm leading-6">
<div class="relative group">
<div
class="absolute transition rounded-lg opacity-25 -inset-0 bg-gradient-to-r from-purple-600 to-pink-600">
</div>
<a href="https://twitter.com/tim_cook" class="cursor-pointer">
<div class="relative p-6 space-y-6 rounded-lg bg-slate-800 ring-2 ring-gray-900/5">
<div class="flex items-center space-x-4"><img
src="https://pbs.twimg.com/profile_images/1535420431766671360/Pwq-1eJc_400x400.jpg"
class="w-12 h-12 bg-center bg-cover border rounded-full" alt="Tim Cook">
<div>
<h3 class="text-lg font-semibold text-white">Tim Cook</h3>
<p class="text-gray-500 text-md">CEO of Apple</p>
</div>
</div>
<p class="leading-normal text-gray-300 text-md">Diam quis enim lobortis scelerisque
fermentum dui faucibus in ornare. Donec pretium vulputate sapien nec sagittis
aliquam malesuada bibendum.</p>
</div>
</a>
</div>
</li>
</ul>
<ul class="hidden space-y-8 lg:block">
<li class="text-sm leading-6">
<div class="relative group">
<div
class="absolute transition rounded-lg opacity-25 -inset-0 bg-gradient-to-r from-purple-600 to-pink-600">
</div>
<a href="https://twitter.com/tim_cook" class="cursor-pointer">
<div class="relative p-6 space-y-6 rounded-lg bg-slate-800 ring-2 ring-gray-900/5">
<div class="flex items-center space-x-4"><img
src="https://pbs.twimg.com/profile_images/1535420431766671360/Pwq-1eJc_400x400.jpg"
class="w-12 h-12 bg-center bg-cover border rounded-full" alt="Tim Cook">
<div>
<h3 class="text-lg font-semibold text-white">Tim Cook</h3>
<p class="text-gray-500 text-md">CEO of Apple</p>
</div>
</div>
<p class="leading-normal text-gray-300 text-md">Diam quis enim lobortis scelerisque
fermentum dui faucibus in ornare. Donec pretium vulputate sapien nec sagittis
aliquam malesuada bibendum.</p>
</div>
</a>
</div>
</li>
<li class="text-sm leading-6">
<div class="relative group">
<div
class="absolute transition rounded-lg opacity-25 -inset-0 bg-gradient-to-r from-purple-600 to-pink-600">
</div>
<a href="https://twitter.com/tim_cook" class="cursor-pointer">
<div class="relative p-6 space-y-6 rounded-lg bg-slate-800 ring-2 ring-gray-900/5">
<div class="flex items-center space-x-4"><img
src="https://pbs.twimg.com/profile_images/1535420431766671360/Pwq-1eJc_400x400.jpg"
class="w-12 h-12 bg-center bg-cover border rounded-full" alt="Tim Cook">
<div>
<h3 class="text-lg font-semibold text-white">Tim Cook</h3>
<p class="text-gray-500 text-md">CEO of Apple</p>
</div>
</div>
<p class="leading-normal text-gray-300 text-md">Diam quis enim lobortis scelerisque
fermentum dui faucibus in ornare. Donec pretium vulputate sapien nec sagittis
aliquam malesuada bibendum.</p>
</div>
</a>
</div>
</li>
</ul>
</div>
</div>
</section> -->
<!-- End Feedback -->
<!-- ====== FAQ Section Start -->
<section class="py-8">
<div class="px-4 mx-auto sm:px-6 lg:px-8 max-w-7xl">
<div class="transition duration-500 ease-in-out transform scale-100 translate-x-0 translate-y-0 opacity-100">
<div class="mb-12 space-y-5 md:mb-16 md:text-center">
<h1 class="mb-5 text-3xl font-semibold text-white md:text-center md:text-5xl">
FAQ.
</h1>
<p class="text-xl text-gray-100 md:text-center md:text-2xl">
Here's what others have to say about us.
</p>
</div>
</div>
<div class="max-w-3xl mx-auto mt-8 space-y-4 md:mt-16">
<div class="transition-all duration-200 shadow-lg cursor-pointer bg-gray-800">
<button type="button" id="question1" data-state="closed"
class="flex items-center justify-between w-full px-4 py-5 sm:p-6">
<span class="flex text-lg font-semibold text-white">How can I get started?</span>
<svg id="arrow1" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke="currentColor" class="w-6 h-6 text-gray-400">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div id="answer1" style="display:none" class="px-4 pb-5 sm:px-6 sm:pb-6 text-white">
<p>Getting started is easy! Sign up for an account, and you'll have access to our platform's
features. No credit card required for the initial signup.</p>
</div>
</div>
<div class="transition-all duration-200 shadow-lg cursor-pointer bg-gray-800">
<button type="button" id="question1" data-state="closed"
class="flex items-center justify-between w-full px-4 py-5 sm:p-6">
<span class="flex text-lg font-semibold text-white">How can I get started?</span>
<svg id="arrow1" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke="currentColor" class="w-6 h-6 text-gray-400">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div id="answer1" style="display:none" class="px-4 pb-5 sm:px-6 sm:pb-6 text-white">
<p>Getting started is easy! Sign up for an account, and you'll have access to our platform's
features. No credit card required for the initial signup.</p>
</div>
</div>
<div class="transition-all duration-200 shadow-lg cursor-pointer bg-gray-800">
<button type="button" id="question1" data-state="closed"
class="flex items-center justify-between w-full px-4 py-5 sm:p-6">
<span class="flex text-lg font-semibold text-white">How can I get started?</span>
<svg id="arrow1" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke="currentColor" class="w-6 h-6 text-gray-400">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div id="answer1" style="display:none" class="px-4 pb-5 sm:px-6 sm:pb-6 text-white">
<p>Getting started is easy! Sign up for an account, and you'll have access to our platform's
features. No credit card required for the initial signup.</p>
</div>
</div>
<div class="transition-all duration-200 shadow-lg cursor-pointer bg-gray-800">
<button type="button" id="question1" data-state="closed"
class="flex items-center justify-between w-full px-4 py-5 sm:p-6">
<span class="flex text-lg font-semibold text-white">How can I get started?</span>
<svg id="arrow1" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke="currentColor" class="w-6 h-6 text-gray-400">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div id="answer1" style="display:none" class="px-4 pb-5 sm:px-6 sm:pb-6 text-white">
<p>Getting started is easy! Sign up for an account, and you'll have access to our platform's
features. No credit card required for the initial signup.</p>
</div>
</div>
</div>
<p class="text-center text-white textbase mt-9">
Still have questions?
<span
class="cursor-pointer font-medium text-tertiary transition-all duration-200 hover:text-tertiary focus:text-tertiary hover-underline">Contact
our support
</span>
</p>
</div>
</section>
<!-- ====== FAQ Section End -->
<!-- Contact us -->
<section class="text-gray-400">
<div class="mx-auto px-5 py-8">
<div class="transition duration-500 ease-in-out transform scale-100 translate-x-0 translate-y-0 opacity-100">
<div class="mb-12 space-y-5 md:mb-16 md:text-center">
<h1 class="mb-5 text-3xl font-semibold text-white md:text-center md:text-5xl">
Contact us.
</h1>
<p class="text-xl text-gray-100 md:text-center md:text-2xl">
Here's what others have to say about us.
</p>
</div>
</div>
<div class="mx-auto md:w-2/3 lg:w-1/2">
<div class="-m-2 flex flex-wrap">
<!-- form -->
<div class="w-1/2 p-2">
<div class="relative">
<input type="text" id="name" name="name" class="peer w-full rounded border border-gray-700 bg-gray-800 bg-opacity-40 py-1 px-3 text-base leading-8 text-gray-100 placeholder-transparent outline-none transition-colors duration-200 ease-in-out focus:border-indigo-500 focus:bg-gray-900 focus:ring-2 focus:ring-indigo-900" placeholder="Name" />
<label for="name" class="absolute left-3 -top-6 bg-transparent text-sm leading-7 text-indigo-500 transition-all peer-placeholder-shown:left-3 peer-placeholder-shown:top-2 peer-placeholder-shown:bg-gray-900 peer-placeholder-shown:text-base peer-placeholder-shown:text-gray-500 peer-focus:left-3 peer-focus:-top-6 peer-focus:text-sm peer-focus:text-indigo-500">Name</label>
</div>
</div>
<div class="w-1/2 p-2">
<div class="relative">
<input type="email" id="email" name="email" class="peer w-full rounded border border-gray-700 bg-gray-800 bg-opacity-40 py-1 px-3 text-base leading-8 text-gray-100 placeholder-transparent outline-none transition-colors duration-200 ease-in-out focus:border-indigo-500 focus:bg-gray-900 focus:ring-2 focus:ring-indigo-900" placeholder="Email" />
<label for="email" class="absolute left-3 -top-6 bg-transparent text-sm leading-7 text-indigo-500 transition-all peer-placeholder-shown:left-3 peer-placeholder-shown:top-2 peer-placeholder-shown:bg-gray-900 peer-placeholder-shown:text-base peer-placeholder-shown:text-gray-500 peer-focus:left-3 peer-focus:-top-6 peer-focus:text-sm peer-focus:text-indigo-500">Email</label>
</div>
</div>
<div class="mt-4 w-full p-2">
<div class="relative">
<textarea id="message" name="message" class="peer h-32 w-full resize-none rounded border border-gray-700 bg-gray-800 bg-opacity-40 py-1 px-3 text-base leading-6 text-gray-100 placeholder-transparent outline-none transition-colors duration-200 ease-in-out focus:border-indigo-500 focus:bg-gray-900 focus:ring-2 focus:ring-indigo-900" placeholder="Message"></textarea>
<label for="message" class="absolute left-3 -top-6 bg-transparent text-sm leading-7 text-indigo-500 transition-all peer-placeholder-shown:left-3 peer-placeholder-shown:top-2 peer-placeholder-shown:bg-gray-900 peer-placeholder-shown:text-base peer-placeholder-shown:text-gray-500 peer-focus:left-3 peer-focus:-top-6 peer-focus:text-sm peer-focus:text-indigo-500">Message</label>
</div>
</div>
<div class="w-full p-2 flex justify-center">
<a class="mx-auto flex rounded border-0 bg-indigo-500 py-2 px-8 text-lg text-white hover:bg-indigo-600 focus:outline-none cursor-pointer" href="mailto:k" target="_blank">Submit</a>
</div>
</div>
</div>
</div>
</section>
<!-- End Contact us -->
</main>
<!--Main-->
<!-- Footer -->
<footer>
<div class="bg-gray-800 py-4 text-gray-400">
<div class="container px-4 mx-auto">
<div class="-mx-4 flex flex-wrap justify-between">
<div class="px-4 my-4 w-full xl:w-1/5">
<a href="/" class="block w-56 mb-10">
<img src="Images/logos/kgx_white-logo.svg" width="220" height="220" alt="">
</a>
<p class="text-justify">
Shared Vision, Shared Success: Unity, integrity, and collaboration define our approach to achieving common goals and fostering innovation.
</p>
</div>
<div class="px-4 my-4 w-full sm:w-auto">
<div>
<h2 class="inline-block text-2xl pb-4 mb-4 border-b-4 border-blue-600">Company</h2>
</div>
<ul class="leading-8">
<li><a href="#" class="hover:text-blue-400">About Us</a></li>
<li><a href="#" class="hover:text-blue-400">Terms & Conditions</a></li>
<li><a href="#" class="hover:text-blue-400">Privacy Policy</a></li>
<li><a href="#" class="hover:text-blue-400">Contact Us</a></li>
</ul>
</div>
<div class="px-4 my-4 w-full sm:w-auto">
<div>
<h2 class="inline-block text-2xl pb-4 mb-4 border-b-4 border-blue-600">Blog</h2>
</div>
<ul class="leading-8">
<li><a href="#" class="hover:text-blue-400">Getting Started With HTML and CSS</a></li>
<li><a href="#" class="hover:text-blue-400">What Is Flex And When to Use It?</a></li>
<li><a href="#" class="hover:text-blue-400">How TailwindCSS Can Help Your Productivity?</a></li>
<li><a href="#" class="hover:text-blue-400">5 Tips to Make Responsive Website</a></li>
<li><a href="#" class="hover:text-blue-400">See More</a></li>
</ul>
</div>
<div class="px-4 my-4 w-full sm:w-auto xl:w-1/5">
<div>
<h2 class="inline-block text-2xl pb-4 mb-4 border-b-4 border-blue-600">Connect With Us</h2>
</div>
<a href="#" class="inline-flex items-center justify-center h-8 w-8 border border-gray-100 rounded-full mr-1 hover:text-blue-400 hover:border-blue-400">
<svg class="w-4 h-4 fill-current" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512">
<path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"></path>
</svg>
</a>
<a href="#" class="inline-flex items-center justify-center h-8 w-8 border border-gray-100 rounded-full mr-1 hover:text-blue-400 hover:border-blue-400">
<svg class="w-4 h-4 fill-current" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"></path>
</svg>
</a>
<a href="#" class="inline-flex items-center justify-center h-8 w-8 border border-gray-100 rounded-full mr-1 hover:text-blue-400 hover:border-blue-400">
<svg class="w-4 h-4 fill-current" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
<path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path>
</svg>
</a>
<a href="#" class="inline-flex items-center justify-center h-8 w-8 border border-gray-100 rounded-full mr-1 hover:text-blue-400 hover:border-blue-400">
<svg class="w-4 h-4 fill-current" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512">
<path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path>
</svg>
</a>
<a href="#" class="inline-flex items-center justify-center h-8 w-8 border border-gray-100 rounded-full hover:text-blue-400 hover:border-blue-400">
<svg class="w-4 h-4 fill-current" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512">
<path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
<div class="bg-indigo-700 py-4 text-gray-100">
<div class="mx-auto px-4">
<div class="flex flex-wrap justify-between">
<div class="px-4 w-full text-center sm:w-auto sm:text-left">
Copyright © 2020
<script>new Date().getFullYear() > 2020 && document.write("- " + new Date().getFullYear())</script>- 2022
Tailwindow. All Rights Reserved.
</div>
<div class="px-4 w-full text-center sm:w-auto sm:text-left">
Made with ❤️ by KGXperience.
</div>
</div>
</div>
</div>
</footer>
<!-- End Footer-->
</div>
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>