-
Notifications
You must be signed in to change notification settings - Fork 54
/
index.html
905 lines (796 loc) · 35.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
<!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">
<link rel="stylesheet" href="main.css">
<script src="https://unpkg.com/feather-icons"></script>
<title>MaaMatters</title>
<!-- google font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<style>
.corefeaturesection{
background-size: 100% 100%;
padding-top: 12rem;
padding-bottom: 12rem;
}
.ctaSection{
background-size: 100% 100%;
}
.companiesList{
animation:10s infinite linear moveCompany;
}
@keyframes moveCompany {
0%{
top:0;
}
100%{
top:-50%;
}
}
</style>
</head>
<body>
<div class="overflow-x-hidden relative w-full">
<!--Navbar-->
<nav class="bg-deepBlue">
<div class="relative w-[1080px] mx-auto flex items-center justify-between ">
<!-- logo -->
<a href="/" class="cursor-pointer py-7 pr-7">
<img
src="./images/logo.png"
width="125px"
height="30px"/>
</a>
<ul class="flex space-x-6">
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer
transition-all duration-200 relative group hidden lg:block">
<a href="#">Ambulance</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block
transition-all duration-200" ></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer
transition-all duration-200 relative group hidden lg:block">
<a href="#">Blood Bank</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block
transition-all duration-200" ></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer
transition-all duration-200 relative group hidden lg:block">
<a href="https://sites.google.com/view/blogforwomen/home">Blogs</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block
transition-all duration-200" ></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer
transition-all duration-200 relative group hidden lg:block">
<a href="https://momchatroom.my.canva.site/">Chatroom</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block
transition-all duration-200" ></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer
transition-all duration-200 relative group hidden lg:block">
<a href="./doctorappointment/da.html">Consultation</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block
transition-all duration-200" ></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer
transition-all duration-200 relative group hidden lg:block">
<a href="https://maamatters.my.canva.site/">Midwives</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block
transition-all duration-200" ></div>
</li>
</ul>
<div class="flex space-x-6">
<img
src="./images/india-flag.svg"
width="28px"
height="20px"
class="hidden lg:block"
/>
<a href="loginandsignup/index.html"><button class="py-3 px-5 font-mullish text-white border-lightBlue border
rounded-sm text-sm font-bold">Log in</button></a>
<a href="loginandsignup/register.html"><button class="py-3 px-4 font-mullish rounded-sm text-sm font-bold
bg-white text-lightBlue300 border transition-all duration-200
hover:text-lightBlue500 hidden lg:flex">Sign Up
<svg
viewBox="0 0 24 24"
focusable="false"
class="w-[14px] h-[14px] ml-3"
>
<path
fill="currentColor"
d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"
></path>
</svg></button></a>
</div>
</div>
</nav>
<!--Hero Section-->
<section
class="relative bg-deepBlue">
<div class="w-10/12 max-w-[1080px] flex sm:flex-col lg:flex-row justify-between items-center mx-auto ">
<!--left part-->
<div class="space-y-8">
<h1 class="font-mullish font-bold text-[40px] leading-[1.2] text-white">An Ongoing Journey</h1>
<div class="w-6 h-1 bg-greenLight"></div>
<p class="font-mullish text-[18px] leading-7 text-white opacity-70">
You are not alone, we're here for you at each step. Lets make your motherhood more beautiful together.
</p>
<a href="loginandsignup/register.html"><button
class="bg-lightBlue text-white mt-7 py-[14px] px-[18px] rounded-md font-mullish font-bold
hover:bg-lightBlue500 transition-all duration-200"
>Sign Up Now</button></a>
</div>
<!--right part-->
<img src="./images/img1.png" alt=""
class="w-full max-w-[650px] brightness-90">
</div>
<!--shape part-->
<div class="w-[103%] absolute left-0 right-0">
<img src="./images/hero-shape.svg" alt=""
class="w-full object-fill ">
</div>
</section>
<!--feature section - 1-->
<section class="relative mt-[190px] overflow-hidden mb-0">
<img src="./images/feature-section1-dottedrows.png" alt="" loading="lazy"
width="233"
height="167"
class="absolute -top-[8rem] left-[10rem] inline-block -z-10">
<img src="./images/feature-section1-dottedrows.png" alt="" loading="lazy"
width="233"
height="167"
class="absolute top-[3rem] right-0 inline-block rotate-180">
<div class="relative w-11/12 max-w-[1080px] mx-auto pt-4">
<!--content box-->
<div class="w-full min-h-[520px] bg-white flex justify-evenly gap-0 rounded-md relative p-10 py-12 border mt-0">
<!--left section-->
<div class="flex flex-col justify-between w-full">
<h3 class="font-mullish text-[28px] leading-10 font-bold max-w-[500px] pb-0 mb-0">
Smoothen your pregnancy at the one-stop-destination
<span class="text-lightBlue">MaaMatters</span>
</h3>
<ul class="space-y-2">
<li class="font-mullish flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>Reduce maternal mortality</span>
</li>
<li class="font-mullish flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>Minimize chances of miscarriage</span>
</li>
<li class="font-mullish flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>Normalising pregnancy</span>
</li>
<li class="font-mullish flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>Speedy Ambulance Services</span>
</li>
<li class="font-mullish flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>Blood Bank Connectivity</span>
</li>
<li class="font-mullish flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>Safe space for discussion</span>
</li>
</ul>
<!-- for button and hyperlink-->
<div class="flex flex-col-reverse md:flex-row items-center space-x-4 ">
<!--hyperlink-->
<div class="flex self-start md:items-center cursor-pointer group">
<a href="about.html"
class="font-mullish font-bold text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"
>Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<img src="images/sideimg.png"
class="h-[30rem] saturate-200 pr-10 brightness-110">
</section>
<!-- feature section 2-->
<section
class="bg-[url(./images/feature-section-2BG.svg)] bg-no-repeat bg-cover pb-[500px] mt-14 pt-[20rem]">
<div
class="w-10/12 max-w-[1080px] mx-auto relative pt-1">
<h2 class="font-mullish text-center text-3xl leading-[1.2] font-extrabold hidden md:block text-white mt-0 pt-0">Explore Our Services</h2>
<div class="w-6 h-1 bg-greenLight mx-auto mt-4 mb-6"></div>
<!--card box-->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 w-full gap-4 my-14">
<!--box1-->
<div
class="w-full min-h-[15rem] relative cursor-pointer featureCard2"
>
<!-- box icon -->
<img
src="images\Untitled design (7).png" class="absolute right-0 top-0 w-16 h-16 featureCardIcon transition-all duration-200"
/>
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#525a76] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.8"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#181C2E"
></path>
</svg>
<!-- box content -->
<div
class="z-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox"
>
<div>
<h3
class="font-mullish font-extrabold text-white leading-[1.2] text-[1.375rem]"
>
Ambulance
</h3>
<p class="font-mullish text-grayText mt-6">
Speedy ambulance services
linked with the data of due dates of the expectant to manage the availability.
</p>
</div>
<div class="flex items-center cursor-pointer place-items-end">
<a
href="#"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200"
>Know More</a
>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 transition-all duration-200"
></i>
</div>
</div>
</div>
<!--box2-->
<div
class="w-full min-h-[15rem] relative cursor-pointer featureCard2"
>
<!-- box icon -->
<img
src="images\4.png"
class="absolute right-0 top-0 w-14 h-14 featureCardIcon transition-all duration-200"
/>
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#525a76] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.8"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#181C2E"
></path>
</svg>
<!-- box content -->
<div
class="z-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox"
>
<div>
<h3
class="font-mullish font-extrabold text-white leading-[1.2] text-[1.375rem]"
>
Blood Bank
</h3>
<p class="font-mullish text-grayText mt-6">
Foretell the baby's blood group and ensure the availability of mother's and baby's blood group in the locality.
</p>
</div>
<div class="flex items-center cursor-pointer place-items-end">
<a
href="#"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200"
>Know More</a
>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 transition-all duration-200"
></i>
</div>
</div>
</div>
<!--box3-->
<div
class="w-full min-h-[15rem] relative cursor-pointer featureCard2"
>
<!-- box icon -->
<img
src="images\2.png"
class="absolute right-0 top-0 w-16 h-16 featureCardIcon transition-all duration-200"
/>
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#525a76] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.8"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#181C2E"
></path>
</svg>
<!-- box content -->
<div
class="z-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox"
>
<div>
<h3
class="font-mullish font-extrabold text-white leading-[1.2] text-[1.375rem]"
>
Blogs
</h3>
<p class="font-mullish text-grayText mt-6">
Connect them with fellow mothers who have faced the same challenges
</p>
</div>
<div class="flex items-center cursor-pointer place-items-end">
<a
href="https://sites.google.com/view/blogforwomen/home"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200"
>Know More</a
>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 transition-all duration-200"
></i>
</div>
</div>
</div>
<div
class="w-full min-h-[15rem] relative cursor-pointer featureCard2"
>
<!-- box icon -->
<img
src="images\3.png"
class="absolute right-0 top-0 w-16 h-16 featureCardIcon transition-all duration-200"
/>
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#525a76] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.8"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#181C2E"
></path>
</svg>
<!-- box content -->
<div
class="z-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox"
>
<div>
<h3
class="font-mullish font-extrabold text-white leading-[1.2] text-[1.375rem]"
>
Chatroom
</h3>
<p class="font-mullish text-grayText mt-6">
A free space for expectant mothers for sharing the ups and downs during their pregnancy
</p>
</div>
<div class="flex items-center cursor-pointer place-items-end">
<a
href="https://momchatroom.my.canva.site/"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200"
>Know More</a
>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 transition-all duration-200"
></i>
</div>
</div>
</div>
<div
class="w-full min-h-[15rem] relative cursor-pointer featureCard2"
>
<!-- box icon -->
<img
src="images\1.png"
class="absolute right-0 top-0 w-16 h-16 featureCardIcon transition-all duration-200"
/>
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#525a76] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.8"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#181C2E"
></path>
</svg>
<!-- box content -->
<div
class="z-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox"
>
<div>
<h3
class="font-mullish font-extrabold text-white leading-[1.2] text-[1.375rem]"
>
Consultation
</h3>
<p class="font-mullish text-grayText mt-6">
Providing online consultation services to avoid the hassle of weekly or monthly visits to the doctor
</p>
</div>
<div class="flex items-center cursor-pointer place-items-end">
<a
href="./doctorappointment/index.html"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200"
>Know More</a
>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 transition-all duration-200"
></i>
</div>
</div>
</div>
<div
class="w-full min-h-[15rem] relative cursor-pointer featureCard2"
>
<!-- box icon -->
<img
src="images\Untitled design (8).png"
class="absolute right-0 top-0 w-16 h-16 featureCardIcon transition-all duration-200"
/>
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#525a76] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.8"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#181C2E"
></path>
</svg>
<!-- box content -->
<div
class="z-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox"
>
<div>
<h3
class="font-mullish font-extrabold text-white leading-[1.2] text-[1.375rem]"
>
Midwives
</h3>
<p class="font-mullish text-grayText mt-6">
Incorporating the midwife culture to provide guidance to the mother anytime.
</p>
</div>
<div class="flex items-center cursor-pointer place-items-end">
<a
href="https://maamatters.my.canva.site/"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200"
>Know More</a
>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 transition-all duration-200"
></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!--new feeatures -->
<section class="bg-white relative">
<div class="relative w-11/12 max-w-[1080px] mx-auto pt-4">
<img src="./images/feature-section1-dottedrows.png" alt=""
class="absolute w-[233px] left-[300px] -top-[6rem] z-10">
<img src="./images/feature-section1-dottedrows.png" alt=""
class="absolute w-[233px] -right-[3.5rem] -top-[6rem] z-10" >
<div class="w-full grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-y-10 gap-x-4 relative z-[100]">
<!--item 1-->
<div class="relative flex items-center z-0">
<h2
class="text-deepBlueHead font-mullish font-extrabold text-6xl leading-[3.375rem] text-right"
>Meet <br>
<span class="text-lightBlue500">
the
</span> <br>
TEAM
</h2>
</div>
<!--card 1-->
<div
class="p-10 bg-[url(/images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer
bg-no-repeat transition-all duration-200
hover:bg-[url(/images/instant-settlement-bghover.svg)]
bg-white" >
<img src="images/tanishi.png" class="h-[16rem]">
<h3 class="font-mullish text-lg font-bold pt-4 text-center">Tanishi Nayak</h3>
<div class="flex flex-row items-center cursor-pointer group">
</div>
</div>
<div
class="p-10 bg-[url(/images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer
bg-no-repeat transition-all duration-200
hover:bg-[url(/images/instant-settlement-bghover.svg)]
bg-white" >
<img src="images/anchit.png" class="h-[16rem]">
<h3 class="font-mullish text-lg font-bold pt-4 text-center">Anchit Bansal</h3>
<div class="flex flex-row items-center cursor-pointer group">
</div>
</div>
<div
class="p-10 bg-[url(/images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer
bg-no-repeat transition-all duration-200
hover:bg-[url(/images/instant-settlement-bghover.svg)]
bg-white" >
<h3 class="font-mullish text-lg font-bold pt-4 text-center"> </h3>
<div class="flex flex-row items-center cursor-pointer group">
</div>
</div>
<div
class="p-10 bg-[url(/images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer
bg-no-repeat transition-all duration-200
hover:bg-[url(/images/instant-settlement-bghover.svg)]
bg-white" >
<img src="images/deepti.png" class="h-[16rem]">
<h3 class="font-mullish text-lg font-bold pt-4 text-center">Deepti Chhabra</h3>
<div class="flex flex-row items-center cursor-pointer group">
</div>
</div>
<div
class="p-10 bg-[url(/images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer
bg-no-repeat transition-all duration-200
hover:bg-[url(/images/instant-settlement-bghover.svg)]
bg-white" >
<img src="images/yashika.png" class="h-[16rem]">
<h3 class="font-mullish text-lg font-bold pt-4 text-center">Yashika Sood</h3>
<div class="flex flex-row items-center cursor-pointer group">
</div>
</div>
<br>
<br>
<!--card 2-->
</div>
</div>
</div>
</section>
<!--join razorpay section-->
<section class="bg-[#f5f8fe] relative pt-40 pb-12 -mt-[200px] -z-[100]">
<div class="w-11/12 max-w-[1080px] mx-auto relative flex flex-col md:flex-row">
<!--left part -->
<div class="flex flex-col justify-center w-full md:max-w-[calc(100%-500px)] sm:my-16">
<h2 class="font-mullish font-bold text-2xl text-deepBlueHead"
>Frequently Asked Questions (FAQs)
</h2>
<div class="w-6 h-1 bg-greenLight my-4 mb-10"></div>
<p class="font-mullish opacity-80">We make it easier for you to focus on building great products while we work on simplifying your pregnancy. Become one of us by joining thousands of our happy users and simplify the pregnancy experience for your customers.</p>
<p class="font-mullish mt-6 opacity-80">With you, throughout your journey.
</p>
</div>
<!--right part-->
<div class="h-[500px] w-[500px] relative overflow-y-hidden mx-auto">
<div style="background: linear-gradient(180deg, #f4f8ff, #fff0)"
class="absolute w-full h-[150px] top-0 z-50"> </div>
<img src="./images/slider.png" alt=""
class="absolute h-auto object-cover companiesList">
<div style="background: linear-gradient(0deg, #f4f8ff, #fff0)"
class="absolute w-full h-[150px] bottom-0 z-50">
</div>
</div>
</div>
</section>
<!-- Testimonail Section -->
<section class="relative">
<div class="w-11/12 max-w-[1300px] mx-auto relative py-20">
<img src="./images/feature-section1-dottedrows.png" alt=""
class="absolute w-[200px] top-[8rem] left-[2rem] -z-10">
<h2 class="font-mullish font-extrabold text-2xl text-deepBlueHead text-center">An Experience
<br>People Love to Talk About</h2>
<div class="w-6 h-1 bg-greenLight mx-auto my-4"></div>
<!--left button -->
<button class="w-[100px] h-[100px] bg-[#f4f8ff] rounded-full absolute left-0 top-1/2
flex justify-center items-center ">
<div class="w-[65%] h-[65%] bg-[#f4f8ff] rounded-full flex justify-center items-center
mix-blend-multiply">
<i
data-feather="chevron-right"
class="stroke-[5px] w-6 h-6 text-gray-400 rotate-180"
></i>
</div>
</button>
<!--right button -->
<button class="w-[100px] h-[100px] bg-[#f4f8ff] rounded-full absolute right-0 top-1/2
flex justify-center items-center ">
<div class="w-[65%] h-[65%] bg-[#f4f8ff] rounded-full flex justify-center items-center
mix-blend-multiply">
<i
data-feather="chevron-right"
class="stroke-[5px] w-6 h-6 text-gray-400"
></i>
</div>
</button>
<!-- main content -->
<div class="flex flex-col xl:flex-row max-w-[960px] items-center mx-auto my-20 space-x-[10rem]">
<!--left image -->
<img src="./images/testimonial.png" alt=""
height="320px"
width="320px"
class="rounded-xl">
<!-- riught part-->
<div class="max-w-[400px] flex flex-col">
<img src="./images/quotes.svg" alt=""
width="35px"
height="40px"
class="-mb-2 xl:order-1">
<p class="font-mullish text-3xl font-extralight xl:order-1">
MaaMatters actually made me realise my lost worth</p>
<img src="./images/quotes.svg" alt=""
width="35px"
height="40px"
class="-mb-2 xl:order-1 rotate-180 ml-72">
<p class="font-mullish font-medium xl:order-1"></p>
</div>
</div>
<!-- 6 dot wala div-->
<div class="w-full flex flex-row mx-auto space-x-2 justify-center">
<!--dot 1-->
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full"></div>
<div class="h-[10px] w-[10px] bg-lightBlue300 rounded-full"></div>
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full"></div>
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full"></div>
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full"></div>
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full"></div>
</div>
</div>
</section>
<!--CTA-->
<section class="bg-[url(/images/CTABg.svg)] w-full h-full bg-no-repeat bg-cover relative ctaSection min-h-[510px]">
<!--main content box-->
<div class="w-11/12 max-w-[1080px] relative flex flex-row items-center mx-auto justify-between space-x-20 pt-16">
<!--left part-->
<div class="flex flex-col gap-5 mt-12 max-w-[600px]">
<h2 class="font-mullish font-bold text-2xl text-white">Fall in love with your pregnancy</h2>
<div class="w-6 h-1 bg-greenLight"></div>
<p class="font-mullish text-white">Sign up now to experience the community of MaaMatters! <br> </p>
<ul class="flex flex-row flex-wrap gap-x-11 text-white gap-y-3">
<li class="font-mullish text-white flex flex-row ">
<i data-feather="check" class="text-greenLight"></i>
<span>Quick Ambulance
</span>
</li>
<li class="font-mullish text-white flex flex-row ">
<i data-feather="check" class="text-greenLight"></i>
<span>
No fear of judgement
</span>
</li >
<li class="font-mullish text-white flex flex-row ">
<i data-feather="check" class="text-greenLight"></i>
<span>API access
</span>
</li>
<li class="font-mullish text-white flex flex-row ">
<i data-feather="check" class="text-greenLight"></i>
<span>24x7 support
</span>
</li>
</ul>
<a href="loginandsignup/register.html"><button
class="min-w-[32px] font-mullish text-sm font-bold bg-white text-lightBlue300 border flex
rounded-sm items-center hover:text-lightBlue500 transition-all duration-200 py-3 px-4 place-self-start">
Sign Up
<svg
viewBox="0 0 24 24"
focusable="false"
class="w-[14px] h-[14px] ml-3"
>
<path
fill="currentColor"
d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"
></path>
</svg>
</button></a>
</div>
<!--right side wali image-->
<img src="./images/ctaImg.svg" alt="" width="240px" height="282px"
class="mt-16 pt-3 hidden lg:block">
</div>
</section>
</div>
<footer>
<div class="bg-deepBlue text-white flex justify-center items-center h-20">
<p>
Copyright @ Caffeinated WhizzKids
</p>
</div>
</footer>
<script>
feather.replace()
</script>
</body>
</html>