forked from TailGrids/play-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpricing.html
1387 lines (1369 loc) · 64.7 KB
/
pricing.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pricing | Play Tailwind</title>
<link
rel="shortcut icon"
href="assets/images/favicon.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="assets/css/animate.css" />
<link rel="stylesheet" href="assets/css/tailwind.css" />
<!-- ==== WOW JS ==== -->
<script src="assets/js/wow.min.js"></script>
<script>
new WOW().init();
</script>
</head>
<body>
<!-- ====== Navbar Section Start -->
<div
class="ud-header absolute top-0 left-0 z-40 flex w-full items-center bg-transparent"
>
<div class="container">
<div class="relative -mx-4 flex items-center justify-between">
<div class="w-60 max-w-full px-4">
<a href="index.html" class="navbar-logo block w-full py-5">
<img
src="assets/images/logo/logo-white.svg"
alt="logo"
class="header-logo w-full"
/>
</a>
</div>
<div class="flex w-full items-center justify-between px-4">
<div>
<button
id="navbarToggler"
class="absolute right-4 top-1/2 block -translate-y-1/2 rounded-lg px-3 py-[6px] ring-primary focus:ring-2 lg:hidden"
>
<span
class="relative my-[6px] block h-[2px] w-[30px] bg-white"
></span>
<span
class="relative my-[6px] block h-[2px] w-[30px] bg-white"
></span>
<span
class="relative my-[6px] block h-[2px] w-[30px] bg-white"
></span>
</button>
<nav
id="navbarCollapse"
class="absolute right-4 top-full hidden w-full max-w-[250px] rounded-lg bg-white py-5 shadow-lg lg:static lg:block lg:w-full lg:max-w-full lg:bg-transparent lg:py-0 lg:px-4 lg:shadow-none xl:px-6"
>
<ul class="blcok lg:flex">
<li class="group relative">
<a
href="#home"
class="ud-menu-scroll mx-8 flex py-2 text-base text-dark group-hover:text-primary lg:mr-0 lg:inline-flex lg:py-6 lg:px-0 lg:text-white lg:group-hover:text-white lg:group-hover:opacity-70"
>
Home
</a>
</li>
<li class="group relative">
<a
href="/#about"
class="ud-menu-scroll mx-8 flex py-2 text-base text-dark group-hover:text-primary lg:mr-0 lg:ml-7 lg:inline-flex lg:py-6 lg:px-0 lg:text-white lg:group-hover:text-white lg:group-hover:opacity-70 xl:ml-12"
>
About
</a>
</li>
<li class="group relative">
<a
href="/#pricing"
class="ud-menu-scroll mx-8 flex py-2 text-base text-dark group-hover:text-primary lg:mr-0 lg:ml-7 lg:inline-flex lg:py-6 lg:px-0 lg:text-white lg:group-hover:text-white lg:group-hover:opacity-70 xl:ml-12"
>
Pricing
</a>
</li>
<li class="group relative">
<a
href="/#team"
class="ud-menu-scroll mx-8 flex py-2 text-base text-dark group-hover:text-primary lg:mr-0 lg:ml-7 lg:inline-flex lg:py-6 lg:px-0 lg:text-white lg:group-hover:text-white lg:group-hover:opacity-70 xl:ml-12"
>
Team
</a>
</li>
<li class="group relative">
<a
href="/#contact"
class="ud-menu-scroll mx-8 flex py-2 text-base text-dark group-hover:text-primary lg:mr-0 lg:ml-7 lg:inline-flex lg:py-6 lg:px-0 lg:text-white lg:group-hover:text-white lg:group-hover:opacity-70 xl:ml-12"
>
Contact
</a>
</li>
<li class="submenu-item group relative">
<a
href="javascript:void(0)"
class="relative mx-8 flex py-2 text-base text-dark after:absolute after:right-1 after:top-1/2 after:mt-[-2px] after:h-2 after:w-2 after:-translate-y-1/2 after:rotate-45 after:border-b-2 after:border-r-2 after:border-current group-hover:text-primary lg:mr-0 lg:ml-8 lg:inline-flex lg:py-6 lg:pl-0 lg:pr-4 lg:text-white lg:after:right-0 lg:group-hover:text-white lg:group-hover:opacity-70 xl:ml-12"
>
Pages
</a>
<div
class="submenu relative top-full left-0 hidden w-[250px] rounded-sm bg-white p-4 transition-[top] duration-300 group-hover:opacity-100 lg:invisible lg:absolute lg:top-[110%] lg:block lg:opacity-0 lg:shadow-lg lg:group-hover:visible lg:group-hover:top-full"
>
<a
href="about.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
About Page
</a>
<a
href="pricing.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
Pricing Page
</a>
<a
href="contact.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
Contact Page
</a>
<a
href="blog-grids.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
Blog Grid Page
</a>
<a
href="blog-details.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
Blog Details Page
</a>
<a
href="signup.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
Sign Up Page
</a>
<a
href="signin.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
Sign In Page
</a>
<a
href="404.html"
class="block rounded py-[10px] px-4 text-sm text-body-color hover:text-primary"
>
404 Page
</a>
</div>
</li>
</ul>
</nav>
</div>
<div class="hidden justify-end pr-16 sm:flex lg:pr-0">
<a
href="signin.html"
class="loginBtn py-3 px-7 text-base font-medium text-white hover:opacity-70"
>
Sign In
</a>
<a
href="signup.html"
class="signUpBtn rounded-lg bg-white bg-opacity-20 py-3 px-6 text-base font-medium text-white duration-300 ease-in-out hover:bg-opacity-100 hover:text-dark"
>
Sign Up
</a>
</div>
</div>
</div>
</div>
</div>
<!-- ====== Navbar Section End -->
<!-- ====== Banner Section Start -->
<div
class="relative z-10 overflow-hidden bg-primary pt-[120px] pb-[100px] md:pt-[130px] lg:pt-[160px]"
>
<div class="container">
<div class="-mx-4 flex flex-wrap items-center">
<div class="w-full px-4">
<div class="text-center">
<h1 class="text-4xl font-semibold text-white">Pricing Page</h1>
</div>
</div>
</div>
</div>
<div>
<span class="absolute top-0 left-0 z-[-1]">
<svg
width="495"
height="470"
viewBox="0 0 495 470"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="55"
cy="442"
r="138"
stroke="white"
stroke-opacity="0.04"
stroke-width="50"
/>
<circle
cx="446"
r="39"
stroke="white"
stroke-opacity="0.04"
stroke-width="20"
/>
<path
d="M245.406 137.609L233.985 94.9852L276.609 106.406L245.406 137.609Z"
stroke="white"
stroke-opacity="0.08"
stroke-width="12"
/>
</svg>
</span>
<span class="absolute top-0 right-0 z-[-1]">
<svg
width="493"
height="470"
viewBox="0 0 493 470"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="462"
cy="5"
r="138"
stroke="white"
stroke-opacity="0.04"
stroke-width="50"
/>
<circle
cx="49"
cy="470"
r="39"
stroke="white"
stroke-opacity="0.04"
stroke-width="20"
/>
<path
d="M222.393 226.701L272.808 213.192L259.299 263.607L222.393 226.701Z"
stroke="white"
stroke-opacity="0.06"
stroke-width="13"
/>
</svg>
</span>
</div>
</div>
<!-- ====== Banner Section End -->
<!-- ====== Pricing Section Start -->
<section
id="pricing"
class="relative z-20 overflow-hidden bg-white pt-20 pb-12 lg:pt-[120px] lg:pb-[90px]"
>
<div class="container">
<div class="-mx-4 flex flex-wrap">
<div class="w-full px-4">
<div class="mx-auto mb-[60px] max-w-[620px] text-center lg:mb-20">
<span class="mb-2 block text-lg font-semibold text-primary">
Pricing Table
</span>
<h2
class="mb-4 text-3xl font-bold text-dark sm:text-4xl md:text-[40px]"
>
Our Pricing Plan
</h2>
<p
class="text-lg leading-relaxed text-body-color sm:text-xl sm:leading-relaxed"
>
There are many variations of passages of Lorem Ipsum available
but the majority have suffered alteration in some form.
</p>
</div>
</div>
</div>
<div class="flex flex-wrap items-center justify-center">
<div class="w-full md:w-1/2 lg:w-1/3">
<div
class="wow fadeInUp relative z-10 mb-10 overflow-hidden rounded-xl border border-primary border-opacity-20 bg-white py-10 px-8 text-center shadow-pricing sm:p-12 lg:py-10 lg:px-6 xl:p-12"
data-wow-delay=".15s
"
>
<span
class="mb-2 block text-base font-medium uppercase text-dark"
>
STARTING FROM
</span>
<h2 class="mb-9 text-[28px] font-semibold text-primary">
€ 19.99/mo
</h2>
<div class="mb-10">
<p
class="mb-1 text-base font-medium leading-loose text-body-color"
>
1 User
</p>
<p
class="mb-1 text-base font-medium leading-loose text-body-color"
>
All UI components
</p>
<p
class="mb-1 text-base font-medium leading-loose text-body-color"
>
Lifetime access
</p>
<p
class="mb-1 text-base font-medium leading-loose text-body-color"
>
Free updates
</p>
<p
class="mb-1 text-base font-medium leading-loose text-body-color"
>
Use on 1 (one) project
</p>
<p
class="mb-1 text-base font-medium leading-loose text-body-color"
>
3 Months support
</p>
</div>
<div class="w-full">
<a
href="javascript:void(0)"
class="inline-block rounded-full border border-[#D4DEFF] bg-transparent py-4 px-11 text-center text-base font-medium text-primary transition duration-300 ease-in-out hover:border-primary hover:bg-primary hover:text-white"
>
Purchase Now
</a>
</div>
<span
class="absolute left-0 bottom-0 z-[-1] block h-14 w-14 rounded-tr-full bg-primary"
>
</span>
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/3">
<div
class="wow fadeInUp relative z-10 mb-10 overflow-hidden rounded-xl bg-primary bg-gradient-to-b from-primary to-[#179BEE] py-10 px-8 text-center shadow-pricing sm:p-12 lg:py-10 lg:px-6 xl:p-12"
data-wow-delay=".1s
"
>
<span
class="mb-5 inline-block rounded-full border border-white bg-white py-2 px-6 text-base font-semibold uppercase text-primary"
>
POPULAR
</span>
<span
class="mb-2 block text-base font-medium uppercase text-white"
>
STARTING FROM
</span>
<h2 class="mb-9 text-[28px] font-semibold text-white">
€ 19.99/mo
</h2>
<div class="mb-10">
<p class="mb-1 text-base font-medium leading-loose text-white">
5 User
</p>
<p class="mb-1 text-base font-medium leading-loose text-white">
All UI components
</p>
<p class="mb-1 text-base font-medium leading-loose text-white">
Lifetime access
</p>
<p class="mb-1 text-base font-medium leading-loose text-white">
Free updates
</p>
<p class="mb-1 text-base font-medium leading-loose text-white">
Use on 1 (one) project
</p>
<p class="mb-1 text-base font-medium leading-loose text-white">
4 Months support
</p>
</div>
<div class="w-full">
<a
href="javascript:void(0)"
class="inline-block rounded-full border border-white bg-white py-4 px-11 text-center text-base font-medium text-dark transition duration-300 ease-in-out hover:border-dark hover:bg-dark hover:text-white"
>
Purchase Now
</a>
</div>
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/3">
<div
class="wow fadeInUp relative z-10 mb-10 overflow-hidden rounded-xl border border-primary border-opacity-20 bg-white py-10 px-8 text-center shadow-pricing sm:p-12 lg:py-10 lg:px-6 xl:p-12"
data-wow-delay=".15s
"
>
<span
class="mb-2 block text-base font-medium uppercase text-dark"
>
STARTING FROM
</span>
<h2 class="mb-9 text-[28px] font-semibold text-primary">
€ 70.99/mo
</h2>
<div class="mb-10">
<p
class="mb-1 text-base font-medium leading-loose text-body-color"
>
1 User
</p>
<p
class="mb-1 text-base font-medium leading-loose text-body-color"
>
All UI components
</p>
<p
class="mb-1 text-base font-medium leading-loose text-body-color"
>
Lifetime access
</p>
<p
class="mb-1 text-base font-medium leading-loose text-body-color"
>
Free updates
</p>
<p
class="mb-1 text-base font-medium leading-loose text-body-color"
>
Use on unlimited project
</p>
<p
class="mb-1 text-base font-medium leading-loose text-body-color"
>
4 Months support
</p>
</div>
<div class="w-full">
<a
href="javascript:void(0)"
class="inline-block rounded-full border border-[#D4DEFF] bg-transparent py-4 px-11 text-center text-base font-medium text-primary transition duration-300 ease-in-out hover:border-primary hover:bg-primary hover:text-white"
>
Purchase Now
</a>
</div>
<span
class="absolute right-0 top-0 z-[-1] block h-14 w-14 rounded-bl-full bg-secondary"
>
</span>
</div>
</div>
</div>
</div>
</section>
<!-- ====== Pricing Section End -->
<!-- ====== Faq Section Start -->
<section
class="relative z-20 overflow-hidden bg-[#f3f4ff] pt-20 pb-12 lg:pt-[120px] lg:pb-[90px]"
>
<div class="container">
<div class="-mx-4 flex flex-wrap">
<div class="w-full px-4">
<div class="mx-auto mb-[60px] max-w-[620px] text-center lg:mb-20">
<span class="mb-2 block text-lg font-semibold text-primary">
FAQ
</span>
<h2
class="mb-4 text-3xl font-bold text-dark sm:text-4xl md:text-[42px]"
>
Any Questions? Answered
</h2>
<p
class="text-lg leading-relaxed text-body-color sm:text-xl sm:leading-relaxed"
>
There are many variations of passages of Lorem Ipsum available
but the majority have suffered alteration in some form.
</p>
</div>
</div>
</div>
<div class="-mx-4 flex flex-wrap">
<div class="w-full px-4 lg:w-1/2">
<div
class="single-faq wow fadeInUp mb-8 w-full rounded-lg border border-[#F3F4FE] bg-white p-5 sm:p-8"
data-wow-delay=".1s
"
>
<button class="faq-btn flex w-full items-center text-left">
<div
class="mr-5 flex h-10 w-full max-w-[40px] items-center justify-center rounded-lg bg-primary bg-opacity-5 text-primary"
>
<svg
width="17"
height="10"
viewBox="0 0 17 10"
class="icon fill-current"
>
<path
d="M7.28687 8.43257L7.28679 8.43265L7.29496 8.43985C7.62576 8.73124 8.02464 8.86001 8.41472 8.86001C8.83092 8.86001 9.22376 8.69083 9.53447 8.41713L9.53454 8.41721L9.54184 8.41052L15.7631 2.70784L15.7691 2.70231L15.7749 2.69659C16.0981 2.38028 16.1985 1.80579 15.7981 1.41393C15.4803 1.1028 14.9167 1.00854 14.5249 1.38489L8.41472 7.00806L2.29995 1.38063L2.29151 1.37286L2.28271 1.36548C1.93092 1.07036 1.38469 1.06804 1.03129 1.41393L1.01755 1.42738L1.00488 1.44184C0.69687 1.79355 0.695778 2.34549 1.0545 2.69659L1.05999 2.70196L1.06565 2.70717L7.28687 8.43257Z"
fill="#3056D3"
stroke="#3056D3"
/>
</svg>
</div>
<div class="w-full">
<h4 class="text-base font-semibold text-black sm:text-lg">
How to use UIdeck?
</h4>
</div>
</button>
<div class="faq-content hidden pl-[62px]">
<p class="py-3 text-base leading-relaxed text-body-color">
It takes 2-3 weeks to get your first blog post ready. That
includes the in-depth research & creation of your monthly
content marketing strategy that we do before writing your
first blog post, Ipsum available .
</p>
</div>
</div>
<div
class="single-faq wow fadeInUp mb-8 w-full rounded-lg border border-[#F3F4FE] bg-white p-5 sm:p-8"
data-wow-delay=".15s
"
>
<button class="faq-btn flex w-full items-center text-left">
<div
class="mr-5 flex h-10 w-full max-w-[40px] items-center justify-center rounded-lg bg-primary bg-opacity-5 text-primary"
>
<svg
width="17"
height="10"
viewBox="0 0 17 10"
class="icon fill-current"
>
<path
d="M7.28687 8.43257L7.28679 8.43265L7.29496 8.43985C7.62576 8.73124 8.02464 8.86001 8.41472 8.86001C8.83092 8.86001 9.22376 8.69083 9.53447 8.41713L9.53454 8.41721L9.54184 8.41052L15.7631 2.70784L15.7691 2.70231L15.7749 2.69659C16.0981 2.38028 16.1985 1.80579 15.7981 1.41393C15.4803 1.1028 14.9167 1.00854 14.5249 1.38489L8.41472 7.00806L2.29995 1.38063L2.29151 1.37286L2.28271 1.36548C1.93092 1.07036 1.38469 1.06804 1.03129 1.41393L1.01755 1.42738L1.00488 1.44184C0.69687 1.79355 0.695778 2.34549 1.0545 2.69659L1.05999 2.70196L1.06565 2.70717L7.28687 8.43257Z"
fill="#3056D3"
stroke="#3056D3"
/>
</svg>
</div>
<div class="w-full">
<h4 class="text-base font-semibold text-black sm:text-lg">
How to download icons from LineIcons?
</h4>
</div>
</button>
<div class="faq-content hidden pl-[62px]">
<p class="py-3 text-base leading-relaxed text-body-color">
It takes 2-3 weeks to get your first blog post ready. That
includes the in-depth research & creation of your monthly
content marketing strategy that we do before writing your
first blog post, Ipsum available .
</p>
</div>
</div>
<div
class="single-faq wow fadeInUp mb-8 w-full rounded-lg border border-[#F3F4FE] bg-white p-5 sm:p-8"
data-wow-delay=".2s
"
>
<button class="faq-btn flex w-full items-center text-left">
<div
class="mr-5 flex h-10 w-full max-w-[40px] items-center justify-center rounded-lg bg-primary bg-opacity-5 text-primary"
>
<svg
width="17"
height="10"
viewBox="0 0 17 10"
class="icon fill-current"
>
<path
d="M7.28687 8.43257L7.28679 8.43265L7.29496 8.43985C7.62576 8.73124 8.02464 8.86001 8.41472 8.86001C8.83092 8.86001 9.22376 8.69083 9.53447 8.41713L9.53454 8.41721L9.54184 8.41052L15.7631 2.70784L15.7691 2.70231L15.7749 2.69659C16.0981 2.38028 16.1985 1.80579 15.7981 1.41393C15.4803 1.1028 14.9167 1.00854 14.5249 1.38489L8.41472 7.00806L2.29995 1.38063L2.29151 1.37286L2.28271 1.36548C1.93092 1.07036 1.38469 1.06804 1.03129 1.41393L1.01755 1.42738L1.00488 1.44184C0.69687 1.79355 0.695778 2.34549 1.0545 2.69659L1.05999 2.70196L1.06565 2.70717L7.28687 8.43257Z"
fill="#3056D3"
stroke="#3056D3"
/>
</svg>
</div>
<div class="w-full">
<h4 class="text-base font-semibold text-black sm:text-lg">
Is GrayGrids part of UIdeck?
</h4>
</div>
</button>
<div class="faq-content hidden pl-[62px]">
<p class="py-3 text-base leading-relaxed text-body-color">
It takes 2-3 weeks to get your first blog post ready. That
includes the in-depth research & creation of your monthly
content marketing strategy that we do before writing your
first blog post, Ipsum available .
</p>
</div>
</div>
</div>
<div class="w-full px-4 lg:w-1/2">
<div
class="single-faq wow fadeInUp mb-8 w-full rounded-lg border border-[#F3F4FE] bg-white p-5 sm:p-8"
data-wow-delay=".1s
"
>
<button class="faq-btn flex w-full items-center text-left">
<div
class="mr-5 flex h-10 w-full max-w-[40px] items-center justify-center rounded-lg bg-primary bg-opacity-5 text-primary"
>
<svg
width="17"
height="10"
viewBox="0 0 17 10"
class="icon fill-current"
>
<path
d="M7.28687 8.43257L7.28679 8.43265L7.29496 8.43985C7.62576 8.73124 8.02464 8.86001 8.41472 8.86001C8.83092 8.86001 9.22376 8.69083 9.53447 8.41713L9.53454 8.41721L9.54184 8.41052L15.7631 2.70784L15.7691 2.70231L15.7749 2.69659C16.0981 2.38028 16.1985 1.80579 15.7981 1.41393C15.4803 1.1028 14.9167 1.00854 14.5249 1.38489L8.41472 7.00806L2.29995 1.38063L2.29151 1.37286L2.28271 1.36548C1.93092 1.07036 1.38469 1.06804 1.03129 1.41393L1.01755 1.42738L1.00488 1.44184C0.69687 1.79355 0.695778 2.34549 1.0545 2.69659L1.05999 2.70196L1.06565 2.70717L7.28687 8.43257Z"
fill="#3056D3"
stroke="#3056D3"
/>
</svg>
</div>
<div class="w-full">
<h4 class="text-base font-semibold text-black sm:text-lg">
Can I use this template for commercial project?
</h4>
</div>
</button>
<div class="faq-content hidden pl-[62px]">
<p class="py-3 text-base leading-relaxed text-body-color">
It takes 2-3 weeks to get your first blog post ready. That
includes the in-depth research & creation of your monthly
content marketing strategy that we do before writing your
first blog post, Ipsum available .
</p>
</div>
</div>
<div
class="single-faq wow fadeInUp mb-8 w-full rounded-lg border border-[#F3F4FE] bg-white p-5 sm:p-8"
data-wow-delay=".15s
"
>
<button class="faq-btn flex w-full items-center text-left">
<div
class="mr-5 flex h-10 w-full max-w-[40px] items-center justify-center rounded-lg bg-primary bg-opacity-5 text-primary"
>
<svg
width="17"
height="10"
viewBox="0 0 17 10"
class="icon fill-current"
>
<path
d="M7.28687 8.43257L7.28679 8.43265L7.29496 8.43985C7.62576 8.73124 8.02464 8.86001 8.41472 8.86001C8.83092 8.86001 9.22376 8.69083 9.53447 8.41713L9.53454 8.41721L9.54184 8.41052L15.7631 2.70784L15.7691 2.70231L15.7749 2.69659C16.0981 2.38028 16.1985 1.80579 15.7981 1.41393C15.4803 1.1028 14.9167 1.00854 14.5249 1.38489L8.41472 7.00806L2.29995 1.38063L2.29151 1.37286L2.28271 1.36548C1.93092 1.07036 1.38469 1.06804 1.03129 1.41393L1.01755 1.42738L1.00488 1.44184C0.69687 1.79355 0.695778 2.34549 1.0545 2.69659L1.05999 2.70196L1.06565 2.70717L7.28687 8.43257Z"
fill="#3056D3"
stroke="#3056D3"
/>
</svg>
</div>
<div class="w-full">
<h4 class="text-base font-semibold text-black sm:text-lg">
Do you have plan to releasing Play Pro?
</h4>
</div>
</button>
<div class="faq-content hidden pl-[62px]">
<p class="py-3 text-base leading-relaxed text-body-color">
It takes 2-3 weeks to get your first blog post ready. That
includes the in-depth research & creation of your monthly
content marketing strategy that we do before writing your
first blog post, Ipsum available .
</p>
</div>
</div>
<div
class="single-faq wow fadeInUp mb-8 w-full rounded-lg border border-[#F3F4FE] bg-white p-5 sm:p-8"
data-wow-delay=".2s
"
>
<button class="faq-btn flex w-full items-center text-left">
<div
class="mr-5 flex h-10 w-full max-w-[40px] items-center justify-center rounded-lg bg-primary bg-opacity-5 text-primary"
>
<svg
width="17"
height="10"
viewBox="0 0 17 10"
class="icon fill-current"
>
<path
d="M7.28687 8.43257L7.28679 8.43265L7.29496 8.43985C7.62576 8.73124 8.02464 8.86001 8.41472 8.86001C8.83092 8.86001 9.22376 8.69083 9.53447 8.41713L9.53454 8.41721L9.54184 8.41052L15.7631 2.70784L15.7691 2.70231L15.7749 2.69659C16.0981 2.38028 16.1985 1.80579 15.7981 1.41393C15.4803 1.1028 14.9167 1.00854 14.5249 1.38489L8.41472 7.00806L2.29995 1.38063L2.29151 1.37286L2.28271 1.36548C1.93092 1.07036 1.38469 1.06804 1.03129 1.41393L1.01755 1.42738L1.00488 1.44184C0.69687 1.79355 0.695778 2.34549 1.0545 2.69659L1.05999 2.70196L1.06565 2.70717L7.28687 8.43257Z"
fill="#3056D3"
stroke="#3056D3"
/>
</svg>
</div>
<div class="w-full">
<h4 class="text-base font-semibold text-black sm:text-lg">
Where and how to host this template?
</h4>
</div>
</button>
<div class="faq-content hidden pl-[62px]">
<p class="py-3 text-base leading-relaxed text-body-color">
It takes 2-3 weeks to get your first blog post ready. That
includes the in-depth research & creation of your monthly
content marketing strategy that we do before writing your
first blog post, Ipsum available .
</p>
</div>
</div>
</div>
</div>
</div>
<div class="absolute bottom-0 right-0 z-[-1]">
<svg
width="1440"
height="886"
viewBox="0 0 1440 886"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
opacity="0.5"
d="M193.307 -273.321L1480.87 1014.24L1121.85 1373.26C1121.85 1373.26 731.745 983.231 478.513 729.927C225.976 477.317 -165.714 85.6993 -165.714 85.6993L193.307 -273.321Z"
fill="url(#paint0_linear)"
/>
<defs>
<linearGradient
id="paint0_linear"
x1="1308.65"
y1="1142.58"
x2="602.827"
y2="-418.681"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#3056D3" stop-opacity="0.36" />
<stop offset="1" stop-color="#F5F2FD" stop-opacity="0" />
<stop offset="1" stop-color="#F5F2FD" stop-opacity="0.096144" />
</linearGradient>
</defs>
</svg>
</div>
</section>
<!-- ====== Faq Section End -->
<!-- ====== Footer Section Start -->
<footer
class="wow fadeInUp relative z-10 bg-black pt-20 lg:pt-[120px]"
data-wow-delay=".15s"
>
<div class="container">
<div class="-mx-4 flex flex-wrap">
<div class="w-full px-4 sm:w-1/2 md:w-1/2 lg:w-4/12 xl:w-3/12">
<div class="mb-10 w-full">
<a
href="javascript:void(0)"
class="mb-6 inline-block max-w-[160px]"
>
<img
src="assets/images/logo/logo-white.svg"
alt="logo"
class="max-w-full"
/>
</a>
<p class="mb-7 text-base text-[#f3f4fe]">
We create digital experiences for brands and companies by using
technology.
</p>
<div class="-mx-3 flex items-center">
<a
href="javascript:void(0)"
class="px-3 text-[#dddddd] hover:text-white"
>
<svg
width="10"
height="18"
viewBox="0 0 10 18"
class="fill-current"
>
<path
d="M9.00007 6.82105H7.50006H6.96434V6.27097V4.56571V4.01562H7.50006H8.62507C8.91971 4.01562 9.16078 3.79559 9.16078 3.46554V0.550085C9.16078 0.247538 8.9465 0 8.62507 0H6.66969C4.55361 0 3.08038 1.54024 3.08038 3.82309V6.21596V6.76605H2.54466H0.72322C0.348217 6.76605 0 7.06859 0 7.50866V9.48897C0 9.87402 0.294645 10.2316 0.72322 10.2316H2.49109H3.02681V10.7817V16.31C3.02681 16.6951 3.32145 17.0526 3.75003 17.0526H6.26791C6.42862 17.0526 6.56255 16.9701 6.66969 16.8601C6.77684 16.7501 6.8572 16.5576 6.8572 16.3925V10.8092V10.2591H7.4197H8.62507C8.97328 10.2591 9.24114 10.0391 9.29471 9.709V9.6815V9.65399L9.66972 7.7562C9.6965 7.56367 9.66972 7.34363 9.509 7.1236C9.45543 6.98608 9.21436 6.84856 9.00007 6.82105Z"
/>
</svg>
</a>
<a
href="javascript:void(0)"
class="px-3 text-[#dddddd] hover:text-white"
>
<svg
width="19"
height="15"
viewBox="0 0 19 15"
class="fill-current"
>
<path
d="M16.2622 3.17878L17.33 1.93293C17.6391 1.59551 17.7234 1.33595 17.7515 1.20618C16.9085 1.67337 16.1217 1.82911 15.6159 1.82911H15.4192L15.3068 1.72528C14.6324 1.18022 13.7894 0.894714 12.8902 0.894714C10.9233 0.894714 9.37779 2.40012 9.37779 4.13913C9.37779 4.24295 9.37779 4.39868 9.40589 4.5025L9.49019 5.02161L8.90009 4.99565C5.30334 4.89183 2.35288 2.03675 1.87518 1.5436C1.08839 2.84136 1.53799 4.08722 2.01568 4.86587L2.97107 6.31937L1.45369 5.54071C1.48179 6.63084 1.93138 7.48736 2.80247 8.11029L3.56116 8.62939L2.80247 8.9149C3.28017 10.2386 4.34795 10.7837 5.13474 10.9913L6.17443 11.2509L5.19094 11.8738C3.61736 12.912 1.65039 12.8342 0.779297 12.7563C2.54957 13.8983 4.65705 14.1579 6.11823 14.1579C7.21412 14.1579 8.02901 14.0541 8.2257 13.9762C16.0936 12.2631 16.4589 5.77431 16.4589 4.47655V4.29486L16.6275 4.19104C17.5829 3.36047 17.9763 2.91923 18.2011 2.65967C18.1168 2.68563 18.0044 2.73754 17.892 2.7635L16.2622 3.17878Z"
/>
</svg>
</a>
<a
href="javascript:void(0)"
class="px-3 text-[#dddddd] hover:text-white"
>
<svg
width="18"
height="18"
viewBox="0 0 18 18"
class="fill-current"
>
<path
d="M8.91688 12.4995C10.6918 12.4995 12.1306 11.0911 12.1306 9.35385C12.1306 7.61655 10.6918 6.20819 8.91688 6.20819C7.14197 6.20819 5.70312 7.61655 5.70312 9.35385C5.70312 11.0911 7.14197 12.4995 8.91688 12.4995Z"
/>
<path
d="M12.4078 0.947388H5.37075C2.57257 0.947388 0.300781 3.17104 0.300781 5.90993V12.7436C0.300781 15.5367 2.57257 17.7604 5.37075 17.7604H12.3524C15.2059 17.7604 17.4777 15.5367 17.4777 12.7978V5.90993C17.4777 3.17104 15.2059 0.947388 12.4078 0.947388ZM8.91696 13.4758C6.56206 13.4758 4.70584 11.6047 4.70584 9.35389C4.70584 7.10312 6.58976 5.23199 8.91696 5.23199C11.2165 5.23199 13.1004 7.10312 13.1004 9.35389C13.1004 11.6047 11.2442 13.4758 8.91696 13.4758ZM14.735 5.61164C14.4579 5.90993 14.0423 6.07264 13.5714 6.07264C13.1558 6.07264 12.7402 5.90993 12.4078 5.61164C12.103 5.31334 11.9368 4.9337 11.9368 4.47269C11.9368 4.01169 12.103 3.65916 12.4078 3.33375C12.7125 3.00834 13.1004 2.84563 13.5714 2.84563C13.9869 2.84563 14.4302 3.00834 14.735 3.30663C15.012 3.65916 15.2059 4.06593 15.2059 4.49981C15.1782 4.9337 15.012 5.31334 14.735 5.61164Z"
/>
<path
d="M13.5985 3.82184C13.2383 3.82184 12.9336 4.12013 12.9336 4.47266C12.9336 4.82519 13.2383 5.12349 13.5985 5.12349C13.9587 5.12349 14.2634 4.82519 14.2634 4.47266C14.2634 4.12013 13.9864 3.82184 13.5985 3.82184Z"
/>
</svg>
</a>
<a
href="javascript:void(0)"
class="px-3 text-[#dddddd] hover:text-white"
>
<svg
width="18"
height="18"
viewBox="0 0 18 18"
class="fill-current"
>
<path
d="M16.7821 0.947388H1.84847C1.14272 0.947388 0.578125 1.49747 0.578125 2.18508V16.7623C0.578125 17.4224 1.14272 18 1.84847 18H16.7257C17.4314 18 17.996 17.4499 17.996 16.7623V2.15757C18.0525 1.49747 17.4879 0.947388 16.7821 0.947388ZM5.7442 15.4421H3.17528V7.32837H5.7442V15.4421ZM4.44563 6.2007C3.59873 6.2007 2.94944 5.5406 2.94944 4.74297C2.94944 3.94535 3.62696 3.28525 4.44563 3.28525C5.26429 3.28525 5.94181 3.94535 5.94181 4.74297C5.94181 5.5406 5.32075 6.2007 4.44563 6.2007ZM15.4835 15.4421H12.9146V11.509C12.9146 10.5739 12.8864 9.33618 11.5596 9.33618C10.2045 9.33618 10.0069 10.3813 10.0069 11.4265V15.4421H7.438V7.32837H9.95046V8.45605H9.9787C10.3457 7.79594 11.1644 7.13584 12.4347 7.13584C15.0601 7.13584 15.54 8.7861 15.54 11.0414V15.4421H15.4835Z"
/>
</svg>
</a>
</div>
</div>
</div>
<div class="w-full px-4 sm:w-1/2 md:w-1/2 lg:w-2/12 xl:w-2/12">
<div class="mb-10 w-full">
<h4 class="mb-9 text-lg font-semibold text-white">About Us</h4>
<ul>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Home
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Features
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
About
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Testimonial
</a>
</li>
</ul>
</div>
</div>
<div class="w-full px-4 sm:w-1/2 md:w-1/2 lg:w-3/12 xl:w-2/12">
<div class="mb-10 w-full">
<h4 class="mb-9 text-lg font-semibold text-white">Features</h4>
<ul>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
How it works
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Privacy policy
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Terms of Service
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Refund policy
</a>
</li>
</ul>
</div>
</div>
<div class="w-full px-4 sm:w-1/2 md:w-1/2 lg:w-3/12 xl:w-2/12">
<div class="mb-10 w-full">
<h4 class="mb-9 text-lg font-semibold text-white">
Our Products
</h4>
<ul>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
LineIcons
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Ecommerce HTML
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
Ayro UI
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="mb-2 inline-block text-base leading-loose text-[#f3f4fe] hover:text-primary"
>
PlainAdmin
</a>
</li>
</ul>
</div>
</div>
<div class="w-full px-4 md:w-2/3 lg:w-6/12 xl:w-3/12">
<div class="mb-10 w-full">
<h4 class="mb-9 text-lg font-semibold text-white">Partners</h4>
<ul class="flex flex-wrap items-center">
<li>
<a
href="https://tailgrids.com"
rel="nofollow noopner"
target="_blank"
class="mb-6 mr-5 block max-w-[120px] xl:max-w-[100px] 2xl:max-w-[120px]"
>
<img
src="assets/images/footer/brands/tailgrids.svg"
alt="tailgrids"
/>
</a>
</li>
<li>
<a
href="https://ayroui.com"
rel="nofollow noopner"
target="_blank"
class="mb-6 mr-5 block max-w-[120px] xl:max-w-[100px] 2xl:max-w-[120px]"
>
<img
src="assets/images/footer/brands/ayroui.svg"
alt="ayroui"
/>
</a>
</li>
<li>
<a