-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1056 lines (1056 loc) · 43.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
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hockey's</title>
<link rel="shortcut icon" href="./Images/hockey.svg" type="image/x-icon" />
<!-- DaisyUI CDN -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.min.css"
rel="stylesheet"
type="text/css"
/>
<!-- Tailwind CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Font Awesome CDN -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Tailwind Custom Design -->
<script>
tailwind.config = {
theme: {
extend: {
colors: {
clifford: "#da373d",
"color-primary": "#131318",
"color-secondary": "#FF4240",
},
},
},
};
</script>
<!-- External CSS Link -->
<link rel="stylesheet" href="./styles/styles.css" />
</head>
<body class="manrope">
<!-- Header Section Start From Here -->
<header>
<!-- Nav Section Start From Here -->
<nav class="container mx-auto lg:px-24 lg:py-14 py-4">
<div class="navbar bg-base-100">
<div class="navbar-start flex lg:justify-start justify-between">
<div class="dropdown">
<div tabindex="0" role="button" class="lg:hidden">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M4 6h16M4 12h8m-8 6h16"
/>
</svg>
</div>
<ul
tabindex="0"
class="menu menu-sm dropdown-content mt-3 z-[1] p-2 shadow bg-color-secondary text-white rounded-box w-24"
>
<li><a class="font-bold">Home</a></li>
<li><a>About</a></li>
<li><a>Pages</a></li>
<li><a>Blog</a></li>
<li><a>Contact</a></li>
</ul>
</div>
<a class="text-color-primary text-2xl lg:text-3xl font-extrabold"
>Hockey<span class="text-color-secondary">’</span>s</a
>
</div>
<div class="navbar-center hidden lg:flex">
<ul class="menu menu-horizontal px-1 text-base">
<li>
<a class="text-color-secondary font-bold">Home</a>
</li>
<li>
<a>About</a>
</li>
<li><a>Pages</a></li>
<li><a>Blog</a></li>
<li><a>Contact</a></li>
</ul>
</div>
<div class="navbar-end">
<button
class="btn btn-ghost hover:text-color-secondary btn-circle hidden lg:flex"
>
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"
/>
</svg>
</button>
<a
class="btn bg-color-secondary hover:bg-slate-300 text-white hover:text-color-secondary lg:text-xl text-lg font-bold lg:px-6 px-4"
>Get Ticket</a
>
</div>
</div>
</nav>
<!-- Nav Section End Here -->
<!-- Banner Section Start From Here -->
<section
class="container mx-auto lg:px-24 px-2 space-y-4 lg:mb-24 mb-10 relative"
>
<div class="carousel w-full">
<div
id="slide1"
class="carousel-item relative w-full bg-[url(./Images/1.png)] bg-no-repeat bg-center bg-cover lg:h-[70vh] h-[40vh] lg:rounded-2xl rounded-xl"
>
<div
class="absolute w-full flex lg:justify-start justify-center lg:bottom-8 bottom-5 lg:left-8 left-0 lg:gap-4 gap-2"
>
<a
href="#slide4"
class="flex items-center justify-center lg:w-10 w-7 lg:h-10 h-7 bg-black rounded-full lg:text-2xl text-base text-white hover:text-color-secondary"
>❮</a
>
<a
href="#slide2"
class="flex items-center justify-center lg:w-10 w-7 lg:h-10 h-7 bg-black rounded-full lg:text-2xl text-base text-white hover:text-color-secondary"
>❯</a
>
</div>
</div>
<div
id="slide2"
class="carousel-item relative w-full bg-[url(./Images/2.png)] bg-no-repeat bg-center bg-cover lg:h-[70vh] h-[40vh] lg:rounded-2xl rounded-xl"
>
<div
class="absolute w-full flex lg:justify-start justify-center lg:bottom-8 bottom-5 lg:left-8 left-0 lg:gap-4 gap-2"
>
<a
href="#slide1"
class="flex items-center justify-center lg:w-10 w-7 lg:h-10 h-7 bg-black rounded-full lg:text-2xl text-base text-white hover:text-color-secondary"
>❮</a
>
<a
href="#slide3"
class="flex items-center justify-center lg:w-10 w-7 lg:h-10 h-7 bg-black rounded-full lg:text-2xl text-base text-white hover:text-color-secondary"
>❯</a
>
</div>
</div>
<div
id="slide3"
class="carousel-item relative w-full bg-[url(./Images/3.png)] bg-no-repeat bg-center bg-cover lg:h-[70vh] h-[40vh] lg:rounded-2xl rounded-xl"
>
<div
class="absolute w-full flex lg:justify-start justify-center lg:bottom-8 bottom-5 lg:left-8 left-0 lg:gap-4 gap-2"
>
<a
href="#slide2"
class="flex items-center justify-center lg:w-10 w-7 lg:h-10 h-7 bg-black rounded-full lg:text-2xl text-base text-white hover:text-color-secondary"
>❮</a
>
<a
href="#slide4"
class="flex items-center justify-center lg:w-10 w-7 lg:h-10 h-7 bg-black rounded-full lg:text-2xl text-base text-white hover:text-color-secondary"
>❯</a
>
</div>
</div>
<div
id="slide4"
class="carousel-item relative w-full bg-[url(./Images/4.png)] bg-no-repeat bg-center bg-cover lg:h-[70vh] h-[40vh] lg:rounded-2xl rounded-xl"
>
<div
class="absolute w-full flex lg:justify-start justify-center lg:bottom-8 bottom-5 lg:left-8 left-0 lg:gap-4 gap-2"
>
<a
href="#slide3"
class="flex items-center justify-center lg:w-10 w-7 lg:h-10 h-7 bg-black rounded-full lg:text-2xl text-base text-white hover:text-color-secondary"
>❮</a
>
<a
href="#slide1"
class="flex items-center justify-center lg:w-10 w-7 lg:h-10 h-7 bg-black rounded-full lg:text-2xl text-base text-white hover:text-color-secondary"
>❯</a
>
</div>
</div>
</div>
<div
class="lg:absolute bg-color-primary text-white lg:p-8 p-4 lg:rounded-2xl rounded-xl lg:bottom-8 lg:right-32"
>
<h1 class="lg:text-2xl text-lg font-extrabold lg:mb-4 mb-2">
Meet all the heroes from the field
</h1>
<p
class="lg:text-base text-sm font-medium lg:max-w-[540px] text-[#FFFFFF99]"
>
Meet each of our heros and support them watching the game in the
field physically. Our heros will be motivate and energetic getting
your support guys. We are cordially invite you to all enjoy the game
and support our team.
</p>
</div>
</section>
<!-- Banner Section End Here -->
</header>
<!-- Header Section End Here -->
<!-- Main Section Start From Here -->
<main>
<!-- Hockey Club Section Start From Here -->
<section class="container mx-auto lg:px-24 px-2 lg:mb-24 mb-10 relative">
<div>
<div class="border-slate-700 border-t border-dashed"></div>
<div class="text-center lg:my-8 my-6 text-color-primary">
<h1 class="lg:text-4xl text-xl font-extrabold lg:mb-6 mb-4">
Professional Hockeys Club
</h1>
<p
class="lg:text-base text-sm font-medium lg:max-w-[600px] mx-auto"
>
We have the best team competitive with others club. Our team doing
the best from the last years and till now doing their best effort
to done their job fantastic.
</p>
</div>
<div class="border-slate-700 border-t border-dashed"></div>
</div>
<div class="grid lg:grid-cols-4 md:grid-cols-2 grid-cols-1 lg:gap-8">
<div class="text-center text-color-primary lg:mt-12 mt-6">
<div
class="radial-progress text-[#E7E7E8]"
style="--value: 100; --size: 6rem; --thickness: 0.8rem"
role="progressbar"
>
<div
class="radial-progress text-[#FF4240]"
style="--value: 87; --size: 6rem; --thickness: 0.8rem"
role="progressbar"
>
<span class="text-color-primary font-extrabold text-xl"
>87%</span
>
</div>
</div>
<h1 class="text-xl font-semibold text-color-primary mt-6 mb-4">
Prayer Facility
</h1>
<p class="text-base font-normal">
Players can do his player anytime when they will be in the club.
</p>
</div>
<div class="text-center text-color-primary lg:mt-12 mt-6">
<div
class="radial-progress text-[#E7E7E8]"
style="--value: 100; --size: 6rem; --thickness: 0.8rem"
role="progressbar"
>
<div
class="radial-progress text-[#49D293]"
style="--value: 95; --size: 6rem; --thickness: 0.8rem"
role="progressbar"
>
<span class="text-color-primary font-extrabold text-xl"
>95%</span
>
</div>
</div>
<h1 class="text-xl font-semibold text-color-primary mt-6 mb-4">
Experienced Coach
</h1>
<p class="text-base font-normal">
We have experience coach in this industry. They teach our player
and make them appropriate for any games.
</p>
</div>
<div class="text-center text-color-primary lg:mt-12 mt-6">
<div
class="radial-progress text-[#E7E7E8]"
style="--value: 100; --size: 6rem; --thickness: 0.8rem"
role="progressbar"
>
<div
class="radial-progress text-[#FFB546]"
style="--value: 90; --size: 6rem; --thickness: 0.8rem"
role="progressbar"
>
<span class="text-color-primary font-extrabold text-xl"
>90%</span
>
</div>
</div>
<h1 class="text-xl font-semibold text-color-primary mt-6 mb-4">
Senior Player
</h1>
<p class="text-base font-normal">
Players can do his player anytime when they will be in the club.
</p>
</div>
<div class="text-center text-color-primary lg:mt-12 mt-6">
<div
class="radial-progress text-[#E7E7E8]"
style="--value: 100; --size: 6rem; --thickness: 0.8rem"
role="progressbar"
>
<div
class="radial-progress text-[#4C8DF1]"
style="--value: 80; --size: 6rem; --thickness: 0.8rem"
role="progressbar"
>
<span class="text-color-primary font-extrabold text-xl"
>80%</span
>
</div>
</div>
<h1 class="text-xl font-semibold text-color-primary mt-6 mb-4">
Training Ground
</h1>
<p class="text-base font-normal">
We have experience coach in this industry. They teach our player
and make them appropriate for any games.
</p>
</div>
</div>
</section>
<!-- Hockey Club Section End Here -->
<!-- Program Section Start From Here -->
<section class="container mx-auto lg:px-24 px-2 lg:mb-24 mb-10 relative">
<div class="lg:mb-12 mb-6">
<div class="border-slate-700 border-t border-dashed"></div>
<div class="text-center lg:my-8 my-6 text-color-primary">
<h1 class="lg:text-4xl text-xl font-extrabold lg:mb-6 mb-4">
Program Sections
</h1>
<p
class="lg:text-base text-sm font-medium lg:max-w-[600px] mx-auto"
>
We have different types of program. Such as Junior Program,
Teenager Program, and Professional Program etc.
</p>
</div>
<div class="border-slate-700 border-t border-dashed"></div>
</div>
<div class="grid lg:grid-cols-2 grid-rows-2 gap-6 relative">
<div class="relative">
<div
class="w-full bg-[linear-gradient(45deg,rgba(0,0,0,0.4),rgba(0,0,0,0.1)),url(./Images/2.png)] bg-no-repeat bg-center bg-cover lg:min-h-[350px] min-h-[250px] lg:rounded-2xl rounded-xl relative"
>
<div
class="text-white absolute lg:bottom-10 bottom-6 lg:right-10 lg:left-10 left-6"
>
<h1 class="lg:text-3xl text-xl font-extrabold lg:mb-4 mb-3">
Junior Program
</h1>
<p class="lg:text-base text-sm font-medium lg:mb-6 mb-5">
We continue this program for children. We do care each of our
students and do our best as much as possible from our site. We
can ensure you don't be upset taking our course for your
child.
</p>
<a
class="btn bg-color-secondary hover:bg-slate-300 text-white hover:text-color-secondary lg:text-xl text-lg font-bold lg:px-5 px-4 border-none"
>Register Now!</a
>
</div>
</div>
</div>
<div class="relative">
<div
class="w-full bg-[linear-gradient(45deg,rgba(0,0,0,0.4),rgba(0,0,0,0.1)),url(./Images/3.png)] bg-no-repeat bg-center bg-cover lg:min-h-[350px] min-h-[250px] lg:rounded-2xl rounded-xl relative"
>
<div
class="text-white absolute lg:bottom-10 bottom-6 lg:right-10 lg:left-10 left-6"
>
<h1 class="lg:text-3xl text-xl font-extrabold lg:mb-4 mb-3">
Teenager Program
</h1>
<p class="lg:text-base text-sm font-medium lg:mb-6 mb-5">
We continue this program for children. We do care each of our
students and do our best as much as possible from our site. We
can ensure you don't be upset taking our course for your
child.
</p>
<a
class="btn bg-color-secondary hover:bg-slate-300 text-white hover:text-color-secondary lg:text-xl text-lg font-bold lg:px-5 px-4 border-none"
>Register Now!</a
>
</div>
</div>
</div>
<div class="relative lg:col-span-2">
<div
class="w-full bg-[linear-gradient(45deg,rgba(0,0,0,0.4),rgba(0,0,0,0.1)),url(./Images/4.png)] bg-no-repeat bg-center bg-cover lg:min-h-[350px] min-h-[250px] lg:rounded-2xl rounded-xl relative"
>
<div
class="text-white absolute lg:bottom-10 bottom-6 lg:right-10 lg:left-10 left-6"
>
<h1 class="lg:text-3xl text-xl font-extrabold lg:mb-4 mb-3">
Professional Program
</h1>
<p
class="lg:text-base text-sm font-medium lg:max-w-[520px] lg:mb-6 mb-5"
>
We continue this program for children. We do care each of our
students and do our best as much as possible from our site. We
can ensure you don't be upset taking our course for your
child.
</p>
<a
class="btn bg-color-secondary hover:bg-slate-300 text-white hover:text-color-secondary lg:text-xl text-lg font-bold lg:px-5 px-4 border-none"
>Register Now!</a
>
</div>
</div>
</div>
</div>
</section>
<!-- Program Section End Here -->
<!-- Our New Product Section Start From Here -->
<section class="container mx-auto lg:px-24 px-2 lg:mb-24 mb-10 relative">
<div class="lg:mb-12 mb-6">
<div class="border-slate-700 border-t border-dashed"></div>
<div class="text-center lg:my-8 my-6 text-color-primary">
<h1 class="lg:text-4xl text-xl font-extrabold lg:mb-6 mb-4">
Our New Products
</h1>
<p
class="lg:text-base text-sm font-medium lg:max-w-[600px] mx-auto"
>
We have different types of program. Such as Junior Program,
Teenager Program, and Professional Program etc.
</p>
</div>
<div class="border-slate-700 border-t border-dashed"></div>
</div>
<div class="grid lg:grid-cols-2 grid-cols-1 gap-6">
<div
class="flex lg:flex-row flex-col gap-5 items-center border border-gray-300 shadow-xl p-6 rounded-2xl"
>
<div class="w-full">
<img class="rounded-xl w-full" src="./Images/5.png" alt="" />
</div>
<div>
<div class="flex items-center gap-4">
<div class="flex items-center gap-2">
<div class="w-[24px]">
<img src="./Images/icon1.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">5.0</h6>
</div>
<div class="flex items-center gap-1">
<div class="w-[24px]">
<img src="./Images/icon2.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">20</h6>
</div>
<div class="flex items-center gap-1">
<div class="w-[24px]">
<img src="./Images/icon3.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">200</h6>
</div>
</div>
<h3 class="my-3 text-color-primary text-xl font-extrabold">
World Cup Flags Football
</h3>
<p class="text-base font-medium text-[#13131899] mb-4">
One of our best product we lunch ever. we are believe work not
any kinds of talk.
</p>
<div
class="flex lg:flex-row flex-col items-start lg:items-center gap-3"
>
<h4 class="text-color-secondary text-base font-extrabold">
Price-$22.00
</h4>
<div class="flex items-center gap-2">
<div class="w-[24px]">
<img src="./Images/icon4.svg" alt="" />
</div>
<h6 class="text-sm font-medium text-[#13131880]">
Delivery Fee:Free
</h6>
</div>
</div>
</div>
</div>
<div
class="flex lg:flex-row flex-col gap-5 items-center border border-gray-300 shadow-xl p-6 rounded-2xl"
>
<div class="w-full">
<img class="rounded-xl w-full" src="./Images/6.png" alt="" />
</div>
<div>
<div class="flex items-center gap-4">
<div class="flex items-center gap-2">
<div class="w-[24px]">
<img src="./Images/icon1.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">5.0</h6>
</div>
<div class="flex items-center gap-1">
<div class="w-[24px]">
<img src="./Images/icon2.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">20</h6>
</div>
<div class="flex items-center gap-1">
<div class="w-[24px]">
<img src="./Images/icon3.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">200</h6>
</div>
</div>
<h3 class="my-3 text-color-primary text-xl font-extrabold">
World Cup Flags Football
</h3>
<p class="text-base font-medium text-[#13131899] mb-4">
One of our best product we lunch ever. we are believe work not
any kinds of talk.
</p>
<div
class="flex lg:flex-row flex-col items-start lg:items-center gap-3"
>
<h4 class="text-color-secondary text-base font-extrabold">
Price-$22.00
</h4>
<div class="flex items-center gap-2">
<div class="w-[24px]">
<img src="./Images/icon4.svg" alt="" />
</div>
<h6 class="text-sm font-medium text-[#13131880]">
Delivery Fee:Free
</h6>
</div>
</div>
</div>
</div>
<div
class="flex lg:flex-row flex-col gap-5 items-center border border-gray-300 shadow-xl p-6 rounded-2xl"
>
<div class="w-full">
<img class="rounded-xl w-full" src="./Images/7.png" alt="" />
</div>
<div>
<div class="flex items-center gap-4">
<div class="flex items-center gap-2">
<div class="w-[24px]">
<img src="./Images/icon1.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">5.0</h6>
</div>
<div class="flex items-center gap-1">
<div class="w-[24px]">
<img src="./Images/icon2.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">20</h6>
</div>
<div class="flex items-center gap-1">
<div class="w-[24px]">
<img src="./Images/icon3.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">200</h6>
</div>
</div>
<h3 class="my-3 text-color-primary text-xl font-extrabold">
World Cup Flags Football
</h3>
<p class="text-base font-medium text-[#13131899] mb-4">
One of our best product we lunch ever. we are believe work not
any kinds of talk.
</p>
<div
class="flex lg:flex-row flex-col items-start lg:items-center gap-3"
>
<h4 class="text-color-secondary text-base font-extrabold">
Price-$22.00
</h4>
<div class="flex items-center gap-2">
<div class="w-[24px]">
<img src="./Images/icon4.svg" alt="" />
</div>
<h6 class="text-sm font-medium text-[#13131880]">
Delivery Fee:Free
</h6>
</div>
</div>
</div>
</div>
<div
class="flex lg:flex-row flex-col gap-5 items-center border border-gray-300 shadow-xl p-6 rounded-2xl"
>
<div class="w-full">
<img class="rounded-xl w-full" src="./Images/8.png" alt="" />
</div>
<div>
<div class="flex items-center gap-4">
<div class="flex items-center gap-2">
<div class="w-[24px]">
<img src="./Images/icon1.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">5.0</h6>
</div>
<div class="flex items-center gap-1">
<div class="w-[24px]">
<img src="./Images/icon2.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">20</h6>
</div>
<div class="flex items-center gap-1">
<div class="w-[24px]">
<img src="./Images/icon3.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">200</h6>
</div>
</div>
<h3 class="my-3 text-color-primary text-xl font-extrabold">
World Cup Flags Football
</h3>
<p class="text-base font-medium text-[#13131899] mb-4">
One of our best product we lunch ever. we are believe work not
any kinds of talk.
</p>
<div
class="flex lg:flex-row flex-col items-start lg:items-center gap-3"
>
<h4 class="text-color-secondary text-base font-extrabold">
Price-$22.00
</h4>
<div class="flex items-center gap-2">
<div class="w-[24px]">
<img src="./Images/icon4.svg" alt="" />
</div>
<h6 class="text-sm font-medium text-[#13131880]">
Delivery Fee:Free
</h6>
</div>
</div>
</div>
</div>
<div
class="flex lg:flex-row flex-col gap-5 items-center border border-gray-300 shadow-xl p-6 rounded-2xl"
>
<div class="w-full">
<img class="rounded-xl w-full" src="./Images/9.png" alt="" />
</div>
<div>
<div class="flex items-center gap-4">
<div class="flex items-center gap-2">
<div class="w-[24px]">
<img src="./Images/icon1.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">5.0</h6>
</div>
<div class="flex items-center gap-1">
<div class="w-[24px]">
<img src="./Images/icon2.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">20</h6>
</div>
<div class="flex items-center gap-1">
<div class="w-[24px]">
<img src="./Images/icon3.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">200</h6>
</div>
</div>
<h3 class="my-3 text-color-primary text-xl font-extrabold">
World Cup Flags Football
</h3>
<p class="text-base font-medium text-[#13131899] mb-4">
One of our best product we lunch ever. we are believe work not
any kinds of talk.
</p>
<div
class="flex lg:flex-row flex-col items-start lg:items-center gap-3"
>
<h4 class="text-color-secondary text-base font-extrabold">
Price-$22.00
</h4>
<div class="flex items-center gap-2">
<div class="w-[24px]">
<img src="./Images/icon4.svg" alt="" />
</div>
<h6 class="text-sm font-medium text-[#13131880]">
Delivery Fee:Free
</h6>
</div>
</div>
</div>
</div>
<div
class="flex lg:flex-row flex-col gap-5 items-center border border-gray-300 shadow-xl p-6 rounded-2xl"
>
<div class="w-full">
<img class="rounded-xl w-full" src="./Images/10.png" alt="" />
</div>
<div>
<div class="flex items-center gap-4">
<div class="flex items-center gap-2">
<div class="w-[24px]">
<img src="./Images/icon1.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">5.0</h6>
</div>
<div class="flex items-center gap-1">
<div class="w-[24px]">
<img src="./Images/icon2.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">20</h6>
</div>
<div class="flex items-center gap-1">
<div class="w-[24px]">
<img src="./Images/icon3.png" alt="" />
</div>
<h6 class="text-base font-medium text-[#13131880]">200</h6>
</div>
</div>
<h3 class="my-3 text-color-primary text-xl font-extrabold">
World Cup Flags Football
</h3>
<p class="text-base font-medium text-[#13131899] mb-4">
One of our best product we lunch ever. we are believe work not
any kinds of talk.
</p>
<div
class="flex lg:flex-row flex-col items-start lg:items-center gap-3"
>
<h4 class="text-color-secondary text-base font-extrabold">
Price-$22.00
</h4>
<div class="flex items-center gap-2">
<div class="w-[24px]">
<img src="./Images/icon4.svg" alt="" />
</div>
<h6 class="text-sm font-medium text-[#13131880]">
Delivery Fee:Free
</h6>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Our New Product Section End Here -->
<!-- Client Question Section Start From Here -->
<section class="container mx-auto lg:px-24 px-2 lg:mb-24 mb-10 relative">
<div class="lg:mb-12 mb-6">
<div class="border-slate-700 border-t border-dashed"></div>
<div class="text-center lg:my-8 my-6 text-color-primary">
<h1 class="lg:text-4xl text-xl font-extrabold lg:mb-6 mb-4">
Clients Question
</h1>
<p
class="lg:text-base text-sm font-medium lg:max-w-[600px] mx-auto"
>
We have different types of program. Such as Junior Program,
Teenager Program, and Professional Program etc.
</p>
</div>
<div class="border-slate-700 border-t border-dashed"></div>
</div>
<div
class="flex lg:flex-row flex-col lg:gap-10 gap-6 lg:items-center border border-gray-300 shadow-xl lg:p-8 p-4 rounded-2xl"
>
<div>
<img class="w-full" src="./Images/11.png" alt="" />
</div>
<div class="flex-1">
<div class="collapse collapse-plus">
<input type="radio" name="my-accordion-6" checked="checked" />
<div class="collapse-title text-xl font-bold">Our Equipment</div>
<div class="collapse-content">
<p class="text-base font-normal text-[#13131899]">
We continue this program for children. We do care each of our
students and do our best as much as possible from our site. We
can ensure you don't be upset taking our course for your
child.
</p>
</div>
<hr class="border-b-slate-900" />
</div>
<div class="collapse collapse-plus">
<input type="radio" name="my-accordion-6" />
<div class="collapse-title text-xl font-bold">
Hockey Training
</div>
<div class="collapse-content">
<p class="text-base font-normal text-[#13131899]">
We continue this program for children. We do care each of our
students and do our best as much as possible from our site. We
can ensure you don't be upset taking our course for your
child.
</p>
</div>
<hr class="border-b-slate-900" />
</div>
<div class="collapse collapse-plus">
<input type="radio" name="my-accordion-6" />
<div class="collapse-title text-xl font-bold">
Private Lessons
</div>
<div class="collapse-content">
<p class="text-base font-normal text-[#13131899]">
We continue this program for children. We do care each of our
students and do our best as much as possible from our site. We
can ensure you don't be upset taking our course for your
child.
</p>
</div>
<hr class="border-b-slate-900" />
</div>
<div class="collapse collapse-plus">
<input type="radio" name="my-accordion-6" />
<div class="collapse-title text-xl font-bold">Ski Touring</div>
<div class="collapse-content">
<p class="text-base font-normal text-[#13131899]">
We continue this program for children. We do care each of our
students and do our best as much as possible from our site. We
can ensure you don't be upset taking our course for your
child.
</p>
</div>
<hr class="border-b-slate-900" />
</div>
<div class="collapse collapse-plus">
<input type="radio" name="my-accordion-6" />
<div class="collapse-title text-xl font-bold">Booking</div>
<div class="collapse-content">
<p class="text-base font-normal text-[#13131899]">
We continue this program for children. We do care each of our
students and do our best as much as possible from our site. We
can ensure you don't be upset taking our course for your
child.
</p>
</div>
<hr class="border-b-slate-900" />
</div>
<div class="collapse collapse-plus">
<input type="radio" name="my-accordion-6" />
<div class="collapse-title text-xl font-bold">Pricings</div>
<div class="collapse-content">
<p class="text-base font-normal text-[#13131899]">
We continue this program for children. We do care each of our
students and do our best as much as possible from our site. We
can ensure you don't be upset taking our course for your
child.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Client Question Section End Here -->
<!-- Get In Touch Section Start From Here -->
<section class="container mx-auto lg:px-24 px-2 lg:mb-24 mb-10 relative">
<div class="lg:mb-12 mb-6">
<div class="border-slate-700 border-t border-dashed"></div>
<div class="text-center lg:my-8 my-6 text-color-primary">
<h1 class="lg:text-4xl text-xl font-extrabold lg:mb-6 mb-4">
Get In Touch
</h1>
<p
class="lg:text-base text-sm font-medium lg:max-w-[600px] mx-auto"
>
We have different types of program. Such as Junior Program,
Teenager Program, and Professional Program etc.
</p>
</div>
<div class="border-slate-700 border-t border-dashed"></div>
</div>
<div class="grid lg:grid-cols-3 grid-cols-1 gap-6">
<div
class="flex flex-col gap-6 border border-gray-300 shadow-xl lg:p-12 p-6 rounded-2xl"
>
<div class="bg-[#BCED6D1A] rounded-2xl lg:p-8 p-6">
<img src="./Images/12.png" alt="" />
<h6 class="mt-6 mb-4 text-base font-normal text-[#13131866]">
Phone Number :
</h6>
<h3 class="text-lg font-extrabold">(+62) 123-321-543</h3>
</div>
<div class="bg-[#FDDD5F1A] rounded-2xl lg:p-8 p-6">
<img src="./Images/13.png" alt="" />
<h6 class="mt-6 mb-4 text-base font-normal text-[#13131866]">
Email :
</h6>
<h3 class="text-lg font-extrabold">[email protected]</h3>
</div>
<div class="bg-[#629CF31A] rounded-2xl lg:p-8 p-6">
<img src="./Images/14.png" alt="" />
<h6 class="mt-6 mb-4 text-base font-normal text-[#13131866]">
Location :
</h6>
<h3 class="text-lg font-extrabold">
152/1 Mohakhali Wireless Gate
</h3>
</div>
</div>
<div class="lg:col-span-2">
<div class="grid gap-6 lg:grid-cols-2 grid-cols-1">
<div>
<label class="text-color-primary text-xl font-bold"
>Your Name</label
>
<input
type="text"
placeholder="Enter your full name"
class="mt-4 input input-bordered w-full text-base font-normal p-5"
/>
</div>
<div>
<label class="text-color-primary text-xl font-bold"
>Your Email</label
>
<input
type="text"
placeholder="Enter your Email"
class="mt-4 input input-bordered w-full text-base font-normal p-5"
/>
</div>
<div>
<label class="text-color-primary text-xl font-bold"
>Subject</label
>
<input
type="text"
placeholder="Enter your subject"
class="mt-4 input input-bordered w-full text-base font-normal p-5"
/>
</div>
<div>
<label class="text-color-primary text-xl font-bold"
>Phone Number</label
>
<input
type="text"
placeholder="Enter your phone number"
class="mt-4 input input-bordered w-full text-base font-normal p-5"
/>
</div>
</div>
<div class="mt-6">
<label class="text-color-primary text-xl font-bold"
>Message</label
>
<textarea
type="text"
placeholder="Enter your message"
class="mt-4 textarea textarea-bordered w-full text-base font-normal p-5"
rows="15"
></textarea>
</div>
<div class="lg:mt-8 mt-6">
<button
class="w-full py-4 rounded-xl bg-color-secondary hover:bg-slate-300 hover:text-color-secondary text-xl font-bold text-center text-white"
>
Send Message
</button>
</div>
</div>
</div>
<div
class="border border-gray-200 bg-[#13131805] shadow-xl lg:p-9 p-7 rounded-2xl lg:mt-12 mt-10 text-center"
>
<h3 class="text-2xl font-extrabold mb-6">Social Media</h3>
<div class="text-2xl space-x-5 cursor-pointer">
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-github"></i>
</div>
</div>
</section>
<!-- Get In Touch Section End Here -->
</main>
<!-- Main Section End Here -->
<!-- Footer Section Start From Here -->
<footer class="bg-color-primary">
<div
class="container mx-auto lg:px-24 px-10 lg:py-24 py-10 grid lg:grid-cols-2 grid-cols-1 lg:text-start text-center gap-10"
>
<div>
<h1 class="lg:text-3xl text-2xl font-extrabold text-white mb-4">
Get In Touch
</h1>
<p
class="text-base font-medium text-[#FFFFFF99] lg:mb-6 mb-5 lg:max-w-[350px]"