-
Notifications
You must be signed in to change notification settings - Fork 209
/
blog-details.html
1923 lines (1900 loc) · 96.5 KB
/
blog-details.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>Blog Details | 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="absolute top-0 left-0 z-40 flex items-center w-full bg-transparent ud-header"
>
<div class="container">
<div class="relative flex items-center justify-between -mx-4">
<div class="max-w-full px-4 w-60">
<a href="index.html" class="block w-full py-5 navbar-logo">
<img
src="assets/images/logo/logo.svg"
alt="logo"
class="w-full dark:hidden"
/>
<img
src="assets/images/logo/logo-white.svg"
alt="logo"
class="hidden w-full dark:block"
/>
</a>
</div>
<div class="flex items-center justify-between w-full 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-dark dark:bg-white"
></span>
<span
class="relative my-[6px] block h-[2px] w-[30px] bg-dark dark:bg-white"
></span>
<span
class="relative my-[6px] block h-[2px] w-[30px] bg-dark dark: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 dark:bg-dark-2 lg:static lg:block lg:w-full lg:max-w-full lg:bg-transparent lg:px-4 lg:py-0 lg:shadow-none dark:lg:bg-transparent xl:px-6"
>
<ul class="blcok lg:flex 2xl:ml-20">
<li class="relative group">
<a
href="#home"
class="flex py-2 mx-8 text-base font-medium ud-menu-scroll text-dark group-hover:text-primary dark:text-white lg:mr-0 lg:inline-flex lg:px-0 lg:py-6 lg:text-body-color dark:lg:text-dark-6"
>
Home
</a>
</li>
<li class="relative group">
<a
href="/#about"
class="flex py-2 mx-8 text-base font-medium ud-menu-scroll text-dark group-hover:text-primary dark:text-white lg:ml-7 lg:mr-0 lg:inline-flex lg:px-0 lg:py-6 lg:text-body-color dark:lg:text-dark-6 xl:ml-10"
>
About
</a>
</li>
<li class="relative group">
<a
href="/#pricing"
class="flex py-2 mx-8 text-base font-medium ud-menu-scroll text-dark group-hover:text-primary dark:text-white lg:ml-7 lg:mr-0 lg:inline-flex lg:px-0 lg:py-6 lg:text-body-color dark:lg:text-dark-6 xl:ml-10"
>
Pricing
</a>
</li>
<li class="relative group">
<a
href="/#team"
class="flex py-2 mx-8 text-base font-medium ud-menu-scroll text-dark group-hover:text-primary dark:text-white lg:ml-7 lg:mr-0 lg:inline-flex lg:px-0 lg:py-6 lg:text-body-color dark:lg:text-dark-6 xl:ml-10"
>
Team
</a>
</li>
<li class="relative group">
<a
href="/#contact"
class="flex py-2 mx-8 text-base font-medium ud-menu-scroll text-dark group-hover:text-primary dark:text-white lg:ml-7 lg:mr-0 lg:inline-flex lg:px-0 lg:py-6 lg:text-body-color dark:lg:text-dark-6 xl:ml-10"
>
Contact
</a>
</li>
<li class="relative group">
<a
href="blog-grids.html"
class="flex py-2 mx-8 text-base font-medium ud-menu-scroll text-dark group-hover:text-primary dark:text-white lg:ml-7 lg:mr-0 lg:inline-flex lg:px-0 lg:py-6 lg:text-body-color dark:lg:text-dark-6 xl:ml-10"
>
Blog
</a>
</li>
<li class="relative submenu-item group">
<a
href="javascript:void(0)"
class="relative flex items-center justify-between py-2 mx-8 text-base font-medium text-primary group-hover:text-primary lg:ml-8 lg:mr-0 lg:inline-flex lg:py-6 lg:pl-0 lg:pr-4 xl:ml-10"
>
Pages
<svg
class="ml-2 fill-current"
width="16"
height="20"
viewBox="0 0 16 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.99999 14.9C7.84999 14.9 7.72499 14.85 7.59999 14.75L1.84999 9.10005C1.62499 8.87505 1.62499 8.52505 1.84999 8.30005C2.07499 8.07505 2.42499 8.07505 2.64999 8.30005L7.99999 13.525L13.35 8.25005C13.575 8.02505 13.925 8.02505 14.15 8.25005C14.375 8.47505 14.375 8.82505 14.15 9.05005L8.39999 14.7C8.27499 14.825 8.14999 14.9 7.99999 14.9Z"
/>
</svg>
</a>
<div
class="submenu relative left-0 top-full hidden w-[250px] rounded-sm bg-white p-4 transition-[top] duration-300 group-hover:opacity-100 dark:bg-dark-2 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 px-4 py-[10px] text-sm text-body-color hover:text-primary dark:text-dark-6 dark:hover:text-primary"
>
About Page
</a>
<a
href="pricing.html"
class="block rounded px-4 py-[10px] text-sm text-body-color hover:text-primary dark:text-dark-6 dark:hover:text-primary"
>
Pricing Page
</a>
<a
href="contact.html"
class="block rounded px-4 py-[10px] text-sm text-body-color hover:text-primary dark:text-dark-6 dark:hover:text-primary"
>
Contact Page
</a>
<a
href="blog-grids.html"
class="block rounded px-4 py-[10px] text-sm text-body-color hover:text-primary dark:text-dark-6 dark:hover:text-primary"
>
Blog Grid Page
</a>
<a
href="blog-details.html"
class="block rounded px-4 py-[10px] text-sm text-primary hover:text-primary dark:hover:text-primary"
>
Blog Details Page
</a>
<a
href="signup.html"
class="block rounded px-4 py-[10px] text-sm text-body-color hover:text-primary dark:text-dark-6 dark:hover:text-primary"
>
Sign Up Page
</a>
<a
href="signin.html"
class="block rounded px-4 py-[10px] text-sm text-body-color hover:text-primary dark:text-dark-6 dark:hover:text-primary"
>
Sign In Page
</a>
<a
href="404.html"
class="block rounded px-4 py-[10px] text-sm text-body-color hover:text-primary dark:text-dark-6 dark:hover:text-primary"
>
404 Page
</a>
</div>
</li>
</ul>
</nav>
</div>
<div class="flex items-center justify-end pr-16 lg:pr-0">
<label
for="themeSwitcher"
class="inline-flex items-center cursor-pointer"
aria-label="themeSwitcher"
name="themeSwitcher"
>
<input
type="checkbox"
name="themeSwitcher"
id="themeSwitcher"
class="sr-only"
/>
<span class="block text-dark dark:hidden dark:text-white">
<svg
class="fill-current"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M13.3125 1.50001C12.675 1.31251 12.0375 1.16251 11.3625 1.05001C10.875 0.975006 10.35 1.23751 10.1625 1.68751C9.93751 2.13751 10.05 2.70001 10.425 3.00001C13.0875 5.47501 14.0625 9.11251 12.975 12.525C11.775 16.3125 8.25001 18.975 4.16251 19.0875C3.63751 19.0875 3.22501 19.425 3.07501 19.9125C2.92501 20.4 3.15001 20.925 3.56251 21.1875C4.50001 21.75 5.43751 22.2 6.37501 22.5C7.46251 22.8375 8.58751 22.9875 9.71251 22.9875C11.625 22.9875 13.5 22.5 15.1875 21.5625C17.85 20.1 19.725 17.7375 20.55 14.8875C22.1625 9.26251 18.975 3.37501 13.3125 1.50001ZM18.9375 14.4C18.2625 16.8375 16.6125 18.825 14.4 20.0625C12.075 21.3375 9.41251 21.6 6.90001 20.85C6.63751 20.775 6.33751 20.6625 6.07501 20.55C10.05 19.7625 13.35 16.9125 14.5875 13.0125C15.675 9.56251 15 5.92501 12.7875 3.07501C17.5875 4.68751 20.2875 9.67501 18.9375 14.4Z"
/>
</svg>
</span>
<span class="hidden text-dark dark:block dark:text-white">
<svg
class="fill-current"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_2172_3070)">
<path
d="M12 6.89999C9.18752 6.89999 6.90002 9.18749 6.90002 12C6.90002 14.8125 9.18752 17.1 12 17.1C14.8125 17.1 17.1 14.8125 17.1 12C17.1 9.18749 14.8125 6.89999 12 6.89999ZM12 15.4125C10.125 15.4125 8.58752 13.875 8.58752 12C8.58752 10.125 10.125 8.58749 12 8.58749C13.875 8.58749 15.4125 10.125 15.4125 12C15.4125 13.875 13.875 15.4125 12 15.4125Z"
/>
<path
d="M12 4.2375C12.45 4.2375 12.8625 3.8625 12.8625 3.375V1.5C12.8625 1.05 12.4875 0.637497 12 0.637497C11.55 0.637497 11.1375 1.0125 11.1375 1.5V3.4125C11.175 3.8625 11.55 4.2375 12 4.2375Z"
/>
<path
d="M12 19.7625C11.55 19.7625 11.1375 20.1375 11.1375 20.625V22.5C11.1375 22.95 11.5125 23.3625 12 23.3625C12.45 23.3625 12.8625 22.9875 12.8625 22.5V20.5875C12.8625 20.1375 12.45 19.7625 12 19.7625Z"
/>
<path
d="M18.1125 6.74999C18.3375 6.74999 18.5625 6.67499 18.7125 6.48749L19.9125 5.28749C20.25 4.94999 20.25 4.42499 19.9125 4.08749C19.575 3.74999 19.05 3.74999 18.7125 4.08749L17.5125 5.28749C17.175 5.62499 17.175 6.14999 17.5125 6.48749C17.6625 6.67499 17.8875 6.74999 18.1125 6.74999Z"
/>
<path
d="M5.32501 17.5125L4.12501 18.675C3.78751 19.0125 3.78751 19.5375 4.12501 19.875C4.27501 20.025 4.50001 20.1375 4.72501 20.1375C4.95001 20.1375 5.17501 20.0625 5.32501 19.875L6.52501 18.675C6.86251 18.3375 6.86251 17.8125 6.52501 17.475C6.18751 17.175 5.62501 17.175 5.32501 17.5125Z"
/>
<path
d="M22.5 11.175H20.5875C20.1375 11.175 19.725 11.55 19.725 12.0375C19.725 12.4875 20.1 12.9 20.5875 12.9H22.5C22.95 12.9 23.3625 12.525 23.3625 12.0375C23.3625 11.55 22.95 11.175 22.5 11.175Z"
/>
<path
d="M4.23751 12C4.23751 11.55 3.86251 11.1375 3.37501 11.1375H1.50001C1.05001 11.1375 0.637512 11.5125 0.637512 12C0.637512 12.45 1.01251 12.8625 1.50001 12.8625H3.41251C3.86251 12.8625 4.23751 12.45 4.23751 12Z"
/>
<path
d="M18.675 17.5125C18.3375 17.175 17.8125 17.175 17.475 17.5125C17.1375 17.85 17.1375 18.375 17.475 18.7125L18.675 19.9125C18.825 20.0625 19.05 20.175 19.275 20.175C19.5 20.175 19.725 20.1 19.875 19.9125C20.2125 19.575 20.2125 19.05 19.875 18.7125L18.675 17.5125Z"
/>
<path
d="M5.32501 4.125C4.98751 3.7875 4.46251 3.7875 4.12501 4.125C3.78751 4.4625 3.78751 4.9875 4.12501 5.325L5.32501 6.525C5.47501 6.675 5.70001 6.7875 5.92501 6.7875C6.15001 6.7875 6.37501 6.7125 6.52501 6.525C6.86251 6.1875 6.86251 5.6625 6.52501 5.325L5.32501 4.125Z"
/>
</g>
<defs>
<clipPath id="clip0_2172_3070">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>
</svg>
</span>
</label>
<div class="hidden sm:flex">
<a
href="signin.html"
class="loginBtn px-[22px] py-2 text-base font-medium text-dark hover:opacity-70 dark:text-white"
>
Sign In
</a>
<a
href="signup.html"
class="px-6 py-2 text-base font-medium text-white duration-300 ease-in-out rounded-md signUpBtn bg-primary hover:bg-blue-dark"
>
Sign Up
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ====== Navbar Section End -->
<!-- ====== Banner Section Start -->
<div
class="relative z-10 overflow-hidden pb-[60px] pt-[120px] dark:bg-dark md:pt-[130px] lg:pt-[160px]"
>
<div
class="absolute bottom-0 left-0 w-full h-px bg-gradient-to-r from-stroke/0 via-stroke to-stroke/0 dark:via-dark-3"
></div>
<div class="container">
<div class="flex flex-wrap items-center -mx-4">
<div class="w-full px-4">
<div class="text-center">
<h1
class="mb-4 text-3xl font-bold text-dark dark:text-white sm:text-4xl md:text-[40px] md:leading-[1.2]"
>
Blog Details
</h1>
<p class="mb-5 text-base text-body-color dark:text-dark-6">
There are many variations of passages of Lorem Ipsum available.
</p>
<ul class="flex items-center justify-center gap-[10px]">
<li>
<a
href="index.html"
class="flex items-center gap-[10px] text-base font-medium text-dark dark:text-white"
>
Home
</a>
</li>
<li>
<a
href="javascript:void(0)"
class="flex items-center gap-[10px] text-base font-medium text-body-color"
>
<span class="text-body-color dark:text-dark-6"> / </span>
Blog Details
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- ====== Banner Section End -->
<!-- ====== Blog Details Section Start -->
<section class="pb-10 pt-20 dark:bg-dark lg:pb-20 lg:pt-[120px]">
<div class="container">
<div class="flex flex-wrap justify-center -mx-4">
<div class="w-full px-4">
<div
class="wow fadeInUp relative z-20 mb-[50px] h-[300px] overflow-hidden rounded-[5px] md:h-[400px] lg:h-[500px]"
data-wow-delay=".1s
"
>
<img
src="assets/images/blog/blog-details-01.jpg"
alt="image"
class="object-cover object-center w-full h-full"
/>
<div
class="absolute top-0 left-0 z-10 flex items-end w-full h-full bg-gradient-to-t from-dark-700 to-transparent"
>
<div class="flex flex-wrap items-center p-4 pb-4 sm:px-8">
<div class="flex items-center mb-4 mr-5 md:mr-10">
<div class="w-10 h-10 mr-4 overflow-hidden rounded-full">
<img
src="assets/images/blog/author-01.png"
alt="image"
class="w-full"
/>
</div>
<p class="text-base font-medium text-white">
By
<a
href="javascript:void(0)"
class="text-white hover:opacity-70"
>
Samuyl Joshi
</a>
</p>
</div>
<div class="flex items-center mb-4">
<p
class="flex items-center mr-5 text-sm font-medium text-white md:mr-6"
>
<span class="mr-3">
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="fill-current"
>
<path
d="M13.9998 2.6499H12.6998V2.0999C12.6998 1.7999 12.4498 1.5249 12.1248 1.5249C11.7998 1.5249 11.5498 1.7749 11.5498 2.0999V2.6499H4.4248V2.0999C4.4248 1.7999 4.1748 1.5249 3.8498 1.5249C3.5248 1.5249 3.2748 1.7749 3.2748 2.0999V2.6499H1.9998C1.1498 2.6499 0.424805 3.3499 0.424805 4.2249V12.9249C0.424805 13.7749 1.1248 14.4999 1.9998 14.4999H13.9998C14.8498 14.4999 15.5748 13.7999 15.5748 12.9249V4.1999C15.5748 3.3499 14.8498 2.6499 13.9998 2.6499ZM1.5748 7.2999H3.6998V9.7749H1.5748V7.2999ZM4.8248 7.2999H7.4498V9.7749H4.8248V7.2999ZM7.4498 10.8999V13.3499H4.8248V10.8999H7.4498V10.8999ZM8.5748 10.8999H11.1998V13.3499H8.5748V10.8999ZM8.5748 9.7749V7.2999H11.1998V9.7749H8.5748ZM12.2998 7.2999H14.4248V9.7749H12.2998V7.2999ZM1.9998 3.7749H3.2998V4.2999C3.2998 4.5999 3.5498 4.8749 3.8748 4.8749C4.1998 4.8749 4.4498 4.6249 4.4498 4.2999V3.7749H11.5998V4.2999C11.5998 4.5999 11.8498 4.8749 12.1748 4.8749C12.4998 4.8749 12.7498 4.6249 12.7498 4.2999V3.7749H13.9998C14.2498 3.7749 14.4498 3.9749 14.4498 4.2249V6.1749H1.5748V4.2249C1.5748 3.9749 1.7498 3.7749 1.9998 3.7749ZM1.5748 12.8999V10.8749H3.6998V13.3249H1.9998C1.7498 13.3499 1.5748 13.1499 1.5748 12.8999ZM13.9998 13.3499H12.2998V10.8999H14.4248V12.9249C14.4498 13.1499 14.2498 13.3499 13.9998 13.3499Z"
/>
</svg>
</span>
26 Feb 2023
</p>
<p
class="flex items-center mr-5 text-sm font-medium text-white md:mr-6"
>
<span class="mr-3">
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="fill-current"
>
<path
d="M11.1002 4.875H4.6502C4.3502 4.875 4.0752 5.125 4.0752 5.45C4.0752 5.775 4.3252 6.025 4.6502 6.025H11.1252C11.4252 6.025 11.7002 5.775 11.7002 5.45C11.7002 5.125 11.4252 4.875 11.1002 4.875Z"
/>
<path
d="M9.8002 7.92505H4.6502C4.3502 7.92505 4.0752 8.17505 4.0752 8.50005C4.0752 8.82505 4.3252 9.07505 4.6502 9.07505H9.8002C10.1002 9.07505 10.3752 8.82505 10.3752 8.50005C10.3752 8.17505 10.1002 7.92505 9.8002 7.92505Z"
/>
<path
d="M13.9998 1.9751H1.9998C1.1498 1.9751 0.424805 2.6751 0.424805 3.5501V12.9751C0.424805 13.3751 0.649805 13.7501 1.0248 13.9251C1.1748 14.0001 1.3248 14.0251 1.4748 14.0251C1.7248 14.0251 1.9498 13.9501 2.1498 13.7751L4.2748 12.0251H13.9998C14.8498 12.0251 15.5748 11.3251 15.5748 10.4501V3.5501C15.5748 2.6751 14.8498 1.9751 13.9998 1.9751ZM14.4498 10.4501C14.4498 10.7001 14.2498 10.9001 13.9998 10.9001H4.0748C3.9498 10.9001 3.8248 10.9501 3.7248 11.0251L1.5748 12.8001V3.5501C1.5748 3.3001 1.7748 3.1001 2.0248 3.1001H14.0248C14.2748 3.1001 14.4748 3.3001 14.4748 3.5501V10.4501H14.4498Z"
/>
</svg>
</span>
09
</p>
<p class="flex items-center text-sm font-medium text-white">
<span class="mr-3">
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="fill-current"
>
<path
d="M7.9998 5.92505C6.8498 5.92505 5.9248 6.85005 5.9248 8.00005C5.9248 9.15005 6.8498 10.075 7.9998 10.075C9.1498 10.075 10.0748 9.15005 10.0748 8.00005C10.0748 6.85005 9.1498 5.92505 7.9998 5.92505ZM7.9998 8.95005C7.4748 8.95005 7.0498 8.52505 7.0498 8.00005C7.0498 7.47505 7.4748 7.05005 7.9998 7.05005C8.5248 7.05005 8.9498 7.47505 8.9498 8.00005C8.9498 8.52505 8.5248 8.95005 7.9998 8.95005Z"
/>
<path
d="M15.3 7.1251C13.875 5.0001 11.9 2.8501 8 2.8501C4.1 2.8501 2.125 5.0001 0.7 7.1251C0.35 7.6501 0.35 8.3501 0.7 8.8751C2.125 10.9751 4.1 13.1501 8 13.1501C11.9 13.1501 13.875 10.9751 15.3 8.8751C15.65 8.3251 15.65 7.6501 15.3 7.1251ZM14.375 8.2501C12.55 10.9251 10.725 12.0251 8 12.0251C5.275 12.0251 3.45 10.9251 1.625 8.2501C1.525 8.1001 1.525 7.9001 1.625 7.7501C3.45 5.0751 5.275 3.9751 8 3.9751C10.725 3.9751 12.55 5.0751 14.375 7.7501C14.45 7.9001 14.45 8.1001 14.375 8.2501Z"
/>
</svg>
</span>
35
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-wrap -mx-4">
<div class="w-full px-4 lg:w-8/12">
<div>
<h2
class="wow fadeInUp mb-8 text-2xl font-bold text-dark dark:text-white sm:text-3xl md:text-[35px] md:leading-[1.28]"
data-wow-delay=".1s
"
>
Facing a challenge is kind of a turn-on for an easy rider
</h2>
<p
class="mb-6 text-base wow fadeInUp text-body-color dark:text-dark-6"
data-wow-delay=".1s"
>
There's a time and place for everything… including asking
for reviews. For instance: you should not asking for a
review on your checkout page. The sole purpose of this page
is to guide your customer to complete their purchase, and
this means that the page should be as minimalist and
pared-down possible. You don't want to have any unnecessary
elements or Call To Actions.
</p>
<p
class="mb-8 text-base wow fadeInUp text-body-color dark:text-dark-6"
data-wow-delay=".1s"
>
There's a time and place for everything… including asking
for reviews. For instance: you should not asking for a
review on your checkout page. The sole purpose of this page
is to guide your customer to complete their purchase, and
this means that the page should be as minimalist and
pared-down possible. You don't want to have any unnecessary
elements or Call To Actions.
</p>
<h3
class="wow fadeInUp mb-6 text-2xl font-bold text-dark dark:text-white sm:text-[28px] sm:leading-[40px]"
data-wow-delay=".1s"
>
Sea no quidam vulputate
</h3>
<p
class="mb-10 text-base wow fadeInUp text-body-color dark:text-dark-6"
data-wow-delay=".1s"
>
At quo cetero fastidii. Usu ex ornatus corpora sententiae,
vocibus deleniti ut nec. Ut enim eripuit eligendi est, in
iracundia signiferumque quo. Sed virtute suavitate
suscipiantur ea, dolor this can eloquentiam ei pro. Suas
adversarium interpretaris eu sit, eum viris impedit ne.
Erant appareat corrumpit ei vel.
</p>
<div
class="wow fadeInUp relative z-10 mb-10 overflow-hidden rounded-[5px] bg-primary/5 px-6 py-8 text-center sm:p-10 md:px-[60px]"
data-wow-delay=".1s
"
>
<div class="mx-auto max-w-[530px]">
<span class="mb-[14px] flex justify-center text-primary">
<svg
width="46"
height="46"
viewBox="0 0 46 46"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="fill-current"
>
<path
d="M13.7995 35.5781C12.937 35.5781 12.1464 35.075 11.8589 34.2844L9.48702 28.5344C6.82765 28.1031 4.45577 26.7375 2.9464 24.6531C1.36515 22.5687 0.862021 19.9812 1.5089 17.4656C2.51515 13.3687 6.75577 10.2781 11.4276 10.35C14.7339 10.4219 17.4651 11.7875 19.262 14.2312C20.987 16.675 21.4183 19.9812 20.412 23C19.4776 25.7312 18.2558 28.4625 17.1058 31.1219C16.6745 32.2 16.1714 33.2781 15.7401 34.2844C15.4526 35.075 14.662 35.5781 13.7995 35.5781ZM11.2839 13.5844C8.1214 13.5844 5.2464 15.5969 4.59952 18.2562C4.24015 19.8375 4.52765 21.4187 5.5339 22.7125C6.6839 24.2937 8.62452 25.3 10.7089 25.4437L11.7151 25.5156L13.7995 30.5469C13.8714 30.3312 14.0151 30.0437 14.087 29.8281C15.237 27.2406 16.387 24.5812 17.2495 21.9219C17.9683 19.9094 17.6808 17.6812 16.5308 16.1C15.3808 14.5187 13.5839 13.6562 11.3558 13.5844C11.3558 13.5844 11.3558 13.5844 11.2839 13.5844Z"
/>
<path
d="M37.5905 35.65C36.728 35.65 35.9374 35.1469 35.6499 34.3563L33.278 28.6063C30.6187 28.175 28.2468 26.8094 26.7374 24.725C25.1562 22.6406 24.653 20.0531 25.2999 17.5375C26.3062 13.4406 30.5468 10.35 35.2187 10.4219C38.5249 10.4938 41.2562 11.8594 42.9812 14.3031C44.7062 16.7469 45.1374 20.0531 44.1312 23.0719C43.1968 25.8031 41.9749 28.5344 40.8249 31.1938C40.3937 32.2719 39.8905 33.35 39.4593 34.3563C39.2437 35.1469 38.453 35.65 37.5905 35.65ZM35.0749 13.5844C31.9124 13.5844 29.0374 15.5969 28.3905 18.2563C28.0312 19.8375 28.3187 21.4188 29.3249 22.7844C30.4749 24.3656 32.4155 25.3719 34.4999 25.5156L35.5062 25.5875L37.5905 30.6188C37.6624 30.4031 37.8062 30.1156 37.878 29.9C39.028 27.3125 40.178 24.6531 41.0405 21.9938C41.7593 19.9813 41.4718 17.7531 40.3218 16.1C39.1718 14.5188 37.3749 13.6563 35.1468 13.5844C35.1468 13.5844 35.1468 13.5844 35.0749 13.5844Z"
/>
</svg>
</span>
<p
class="mb-[18px] text-base italic leading-[28px] text-dark dark:text-white"
>
A spring of truth shall flow from it: like a new star it
shall scatter the darkness of ignorance, and cause a
light heretofore unknown to shine amongst men.
</p>
<span
class="text-xs italic text-body-color dark:text-dark-6"
>
“Andrio Domeco”
</span>
</div>
<div>
<span class="absolute top-0 left-0">
<svg
width="103"
height="109"
viewBox="0 0 103 109"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<ellipse
cx="0.483916"
cy="3.5"
rx="102.075"
ry="105.5"
transform="rotate(180 0.483916 3.5)"
fill="url(#paint0_linear_2014_9016)"
/>
<defs>
<linearGradient
id="paint0_linear_2014_9016"
x1="-101.591"
y1="-50.4346"
x2="49.1618"
y2="-49.6518"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#3056D3" stop-opacity="0.15" />
<stop
offset="1"
stop-color="white"
stop-opacity="0"
/>
</linearGradient>
</defs>
</svg>
</span>
<span class="absolute bottom-0 right-0">
<svg
width="102"
height="106"
viewBox="0 0 102 106"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<ellipse
cx="102.484"
cy="105.5"
rx="102.075"
ry="105.5"
fill="url(#paint0_linear_2014_9017)"
/>
<defs>
<linearGradient
id="paint0_linear_2014_9017"
x1="0.409163"
y1="51.5654"
x2="151.162"
y2="52.3482"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#3056D3" stop-opacity="0.15" />
<stop
offset="1"
stop-color="white"
stop-opacity="0"
/>
</linearGradient>
</defs>
</svg>
</span>
</div>
</div>
<h3
class="wow fadeInUp mb-6 text-2xl font-semibold text-dark dark:text-white sm:text-[28px] sm:leading-[40px]"
data-wow-delay=".1s"
>
What is it with your ideas?
</h3>
<p
class="mb-6 text-base wow fadeInUp text-body-color dark:text-dark-6"
data-wow-delay=".1s"
>
At quo cetero fastidii. Usu ex ornatus corpora sententiae,
vocibus deleniti ut nec. Ut enim eripuit eligendi est, in
iracundia signiferumque quo. Sed virtute suavitate
suscipiantur ea, dolor this can eloquentiam ei pro. Suas
adversarium interpretaris eu sit, eum viris impedit ne.
Erant appareat corrumpit ei vel.
</p>
<p
class="mb-10 text-base wow fadeInUp text-body-color dark:text-dark-6"
data-wow-delay=".1s"
>
At quo cetero fastidii. Usu ex ornatus corpora sententiae,
vocibus deleniti ut nec. Ut enim eripuit eligendi est, in
iracundia signiferumque quo. Sed virtute suavitate
suscipiantur ea, dolor this can eloquentiam ei pro. Suas
adversarium interpretaris eu sit, eum viris impedit ne.
Erant appareat corrumpit ei vel.
</p>
<div class="flex flex-wrap items-center mb-12 -mx-4">
<div class="w-full px-4 md:w-1/2">
<div
class="flex flex-wrap items-center gap-3 mb-8 wow fadeInUp md:mb-0"
data-wow-delay=".1s"
>
<a
href="javascript:void(0)"
class="block rounded-md bg-primary/[0.08] px-[14px] py-[5px] text-base text-dark hover:bg-primary hover:text-white dark:text-white"
>
Design
</a>
<a
href="javascript:void(0)"
class="block rounded-md bg-primary/[0.08] px-[14px] py-[5px] text-base text-dark hover:bg-primary hover:text-white dark:text-white"
>
Development
</a>
<a
href="javascript:void(0)"
class="block rounded-md bg-primary/[0.08] px-[14px] py-[5px] text-base text-dark hover:bg-primary hover:text-white dark:text-white"
>
Info
</a>
</div>
</div>
<div class="w-full px-4 md:w-1/2">
<div
class="flex items-center wow fadeInUp md:justify-end"
data-wow-delay=".1s"
>
<span
class="mr-5 text-sm font-medium text-body-color dark:text-dark-6"
>
Share This Post
</span>
<div class="flex items-center gap-[10px]">
<a href="javascript:void(0)">
<svg
width="32"
height="32"
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16 32C24.8366 32 32 24.8366 32 16C32 7.16344 24.8366 0 16 0C7.16344 0 0 7.16344 0 16C0 24.8366 7.16344 32 16 32Z"
fill="#1877F2"
/>
<path
d="M17 15.5399V12.7518C17 11.6726 17.8954 10.7976 19 10.7976H21V7.86631L18.285 7.67682C15.9695 7.51522 14 9.30709 14 11.5753V15.5399H11V18.4712H14V24.3334H17V18.4712H20L21 15.5399H17Z"
fill="white"
/>
</svg>
</a>
<a href="javascript:void(0)">
<svg
width="32"
height="32"
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16 32C24.8366 32 32 24.8366 32 16C32 7.16344 24.8366 0 16 0C7.16344 0 0 7.16344 0 16C0 24.8366 7.16344 32 16 32Z"
fill="#55ACEE"
/>
<path
d="M24.2945 11.375C24.4059 11.2451 24.2607 11.0755 24.0958 11.1362C23.728 11.2719 23.3918 11.3614 22.8947 11.4166C23.5062 11.0761 23.7906 10.5895 24.0219 9.99339C24.0777 9.84961 23.9094 9.71915 23.7645 9.78783C23.1759 10.0669 22.5408 10.274 21.873 10.3963C21.2129 9.7421 20.272 9.33331 19.2312 9.33331C17.2325 9.33331 15.6117 10.8406 15.6117 12.6993C15.6117 12.9632 15.6441 13.2202 15.7051 13.4663C12.832 13.3324 10.2702 12.1034 8.49031 10.2188C8.36832 10.0897 8.14696 10.1068 8.071 10.2643C7.86837 10.6846 7.7554 11.1509 7.7554 11.6418C7.7554 12.8093 8.39417 13.8395 9.36518 14.4431C8.92981 14.4301 8.51344 14.3452 8.12974 14.2013C7.94292 14.1312 7.72877 14.2543 7.75387 14.4427C7.94657 15.8893 9.11775 17.0827 10.6295 17.3647C10.3259 17.442 10.0061 17.483 9.67537 17.483C9.59517 17.483 9.51567 17.4805 9.43688 17.4756C9.23641 17.4632 9.07347 17.6426 9.15942 17.8141C9.72652 18.946 10.951 19.7361 12.376 19.7607C11.1374 20.6637 9.57687 21.2017 7.88109 21.2017C7.672 21.2017 7.5823 21.4706 7.7678 21.5617C9.20049 22.266 10.832 22.6666 12.5656 22.6666C19.2231 22.6666 22.8631 17.5377 22.8631 13.0896C22.8631 12.944 22.8594 12.7984 22.8528 12.6542C23.3932 12.2911 23.8789 11.8595 24.2945 11.375Z"
fill="white"
/>
</svg>
</a>
<a href="javascript:void(0)">
<svg
width="32"
height="32"
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16 32C24.8366 32 32 24.8366 32 16C32 7.16344 24.8366 0 16 0C7.16344 0 0 7.16344 0 16C0 24.8366 7.16344 32 16 32Z"
fill="#007AB9"
/>
<path
d="M11.7836 10.1666C11.7833 10.8452 11.3716 11.4559 10.7426 11.7106C10.1137 11.9654 9.39306 11.8134 8.92059 11.3263C8.44811 10.8392 8.31813 10.1143 8.59192 9.49341C8.86572 8.87251 9.48862 8.4796 10.1669 8.49996C11.0678 8.527 11.784 9.26533 11.7836 10.1666ZM11.8336 13.0666H8.50024V23.4999H11.8336V13.0666ZM17.1003 13.0666H13.7836V23.4999H17.0669V18.0249C17.0669 14.9749 21.0419 14.6916 21.0419 18.0249V23.4999H24.3336V16.8916C24.3336 11.75 18.4503 11.9416 17.0669 14.4666L17.1003 13.0666Z"
fill="white"
/>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="w-full px-4 lg:w-4/12">
<div>
<div
class="wow fadeInUp relative mb-12 overflow-hidden rounded-[5px] bg-primary px-11 py-[60px] text-center lg:px-8"
data-wow-delay=".1s
"
>
<h3
class="mb-[6px] text-[28px] font-semibold leading-[40px] text-white"
>
Join our newsletter!
</h3>
<p class="mb-5 text-base text-white">
Enter your email to receive our latest newsletter.
</p>
<form>
<input
type="email"
placeholder="Your email address"
class="mb-4 h-[50px] w-full rounded-md border border-transparent bg-white/10 text-center text-base text-white outline-none placeholder:text-white/60 focus:border-white focus-visible:shadow-none"
/>
<input
type="submit"
value="Subscribe Now"
class="mb-4 h-[50px] w-full cursor-pointer rounded-md bg-secondary text-center text-sm font-medium text-white transition duration-300 ease-in-out hover:bg-[#0BB489] hover:bg-opacity-90"
/>
</form>
<p class="text-sm font-medium text-white">
Don't worry, we don't spam
</p>
<div>
<span class="absolute top-0 right-0">
<svg
width="46"
height="46"
viewBox="0 0 46 46"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="1.39737"
cy="44.6026"
r="1.39737"
transform="rotate(-90 1.39737 44.6026)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="1.39737"
cy="7.9913"
r="1.39737"
transform="rotate(-90 1.39737 7.9913)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="13.6943"
cy="44.6026"
r="1.39737"
transform="rotate(-90 13.6943 44.6026)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="13.6943"
cy="7.9913"
r="1.39737"
transform="rotate(-90 13.6943 7.9913)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="25.9911"
cy="44.6026"
r="1.39737"
transform="rotate(-90 25.9911 44.6026)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="25.9911"
cy="7.9913"
r="1.39737"
transform="rotate(-90 25.9911 7.9913)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="38.288"
cy="44.6026"
r="1.39737"
transform="rotate(-90 38.288 44.6026)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="38.288"
cy="7.9913"
r="1.39737"
transform="rotate(-90 38.288 7.9913)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="1.39737"
cy="32.3058"
r="1.39737"
transform="rotate(-90 1.39737 32.3058)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="13.6943"
cy="32.3058"
r="1.39737"
transform="rotate(-90 13.6943 32.3058)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="25.9911"
cy="32.3058"
r="1.39737"
transform="rotate(-90 25.9911 32.3058)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="38.288"
cy="32.3058"
r="1.39737"
transform="rotate(-90 38.288 32.3058)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="1.39737"
cy="20.0086"
r="1.39737"
transform="rotate(-90 1.39737 20.0086)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="13.6943"
cy="20.0086"
r="1.39737"
transform="rotate(-90 13.6943 20.0086)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="25.9911"
cy="20.0086"
r="1.39737"
transform="rotate(-90 25.9911 20.0086)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="38.288"
cy="20.0086"
r="1.39737"
transform="rotate(-90 38.288 20.0086)"
fill="white"
fill-opacity="0.44"
/>
</svg>
</span>
<span class="absolute bottom-0 left-0">
<svg
width="46"
height="46"
viewBox="0 0 46 46"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="1.39737"
cy="44.6026"
r="1.39737"
transform="rotate(-90 1.39737 44.6026)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="1.39737"
cy="7.9913"
r="1.39737"
transform="rotate(-90 1.39737 7.9913)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="13.6943"
cy="44.6026"
r="1.39737"
transform="rotate(-90 13.6943 44.6026)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="13.6943"
cy="7.9913"
r="1.39737"
transform="rotate(-90 13.6943 7.9913)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="25.9911"
cy="44.6026"
r="1.39737"
transform="rotate(-90 25.9911 44.6026)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="25.9911"
cy="7.9913"
r="1.39737"
transform="rotate(-90 25.9911 7.9913)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="38.288"
cy="44.6026"
r="1.39737"
transform="rotate(-90 38.288 44.6026)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="38.288"
cy="7.9913"
r="1.39737"
transform="rotate(-90 38.288 7.9913)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="1.39737"
cy="32.3058"
r="1.39737"
transform="rotate(-90 1.39737 32.3058)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="13.6943"
cy="32.3058"
r="1.39737"
transform="rotate(-90 13.6943 32.3058)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="25.9911"
cy="32.3058"
r="1.39737"
transform="rotate(-90 25.9911 32.3058)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="38.288"
cy="32.3058"
r="1.39737"
transform="rotate(-90 38.288 32.3058)"
fill="white"
fill-opacity="0.44"
/>
<circle
cx="1.39737"
cy="20.0086"
r="1.39737"