-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1041 lines (985 loc) · 59.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Stephanie Pinto - Home</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/responsive.css" />
<!-- Import Tailwind CSS and External Stylesheet -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<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=Raleway:ital,wght@0,100..900;1,100..900&display=swap"/>
</head>
<body>
<!-- Header - Menu -->
<header class="bg-white font-raleway shadow-lg font-bold text-[12.5px] uppercase leading-[23.48px] tracking-[0.3em] text-[#274C69]">
<nav class="container mx-auto p-[10px] md:margin-[0]">
<div class="flex justify-center space-x-[90px] items-center">
<!-- Profile Icon (Only on Small Devices) -->
<!-- <a href="#" class="flex items-center space-x-3 rtl:space-x-reverse sm:flex md:hidden lg:hidden block">
<img src="assets/mobile/profile-con.png" class="h-8 md:h-[45px]" alt="Profile Icon" />
</a> -->
<a href="#" class="flex items-center space-x-3 rtl:space-x-reverse sm:flex md:hidden lg:hidden block">
<img id="nav-left-logo" src="assets/logo.png" class="h-8 md:h-[45px]" alt="Profile Icon" />
</a>
<!-- Left Menu (Only on Large Devices) -->
<!-- md:flex lg:flex -->
<div class="flex hidden space-x-14 md:flex lg:flex md:space-x-6 lg:space-x-14 md:text-[10px] 2xl:text-[20px] lg:font-bold" style="margin-left: 0px;">
<a href="/about" class="hover:text-blue-500">About</a>
<a href="/courses" class="hover:text-blue-500">Courses</a>
<a href="/resources" class="hover:text-blue-500">Resources</a>
</div>
<!-- Logo -->
<div class="invisible md:visible lg:visible items-center sm:space-x-3 sm:rtl:space-x-reverse" id="stephanie-logo-section">
<a href="#">
<img id="nav-left-logo" src="assets/logo.png" alt="Logo" class="transform h-[35px] md:h-[70px] lg:h-[50px] xl:h-[70px] 2xl:w-[294px] 2xl:h-[150px]"/>
</a>
</div>
<!-- Right Menu (Only on Large Devices) -->
<div class="flex hidden space-x-14 place-items-center md:flex lg:flex md:space-x-6 lg:space-x-14 md:text-[10px] 2xl:text-[20px]" id="right-menu-section">
<a href="#" class="hover:text-blue-500">Book</a>
<a href="#" class="hover:text-blue-500">Work With Me</a>
<a href="#" class="hover:text-blue-500">Blog</a>
</div>
<!-- Menu List -->
<!-- Menu List (Only on Small Devices) -->
<div id="navbar-default" class="fixed inset-0 bg-gray-900 bg-opacity-75 flex flex-col items-center justify-center space-y-4 md:hidden hidden">
<button id="close-btn" class="absolute top-4 right-4 text-white text-2xl">×</button>
<ul class="flex flex-col items-center space-y-4 text-white">
<li><a href="/about" class="hover:text-blue-500">About</a></li>
<li><a href="/courses" class="hover:text-blue-500">Courses</a></li>
<li><a href="/resources" class="hover:text-blue-500">Resources</a></li>
<li><a href="#" class="hover:text-blue-500 md:text-sm sm:text-xs">Book</a></li>
<li><a href="#" class="hover:text-blue-500 md:text-sm sm:text-xs">Work With Me</a></li>
<li><a href="#" class="hover:text-blue-500 md:text-sm sm:text-xs">Blog</a></li>
</ul>
</div>
<!-- Menu Button for Small Devices -->
<button id="menu-btn" type="button" class="inline-flex items-center justify-center text-lg text-gray-500 rounded-lg md:hidden lg:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600" aria-controls="navbar-default" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<img class="md:h-[35px]" src="assets/mobile/icon-menu.png" alt="Menu Icon">
</button>
</div>
</nav>
</header>
<!-- Hero Section with Background Image and Overlay -->
<section class="relative h-screen hero-section w-full bg-cover bg-center bg-left sm:bg-center md:bg-center lg:bg-center 2xl:h-[841px]" id="_hero-section">
<div class="relative h-[90%] flex flex-col justify-center items-center text-white pl-24 w-1/2 2xl:justify-start 2xl:pt-[120px]">
<h2 class="text-white font-mangolia text-[28px] leading-[56.4px] text-center mb-1 2xl:text-[40px] 2xl:leading-[3] 2xl:font-normal">
Lorem ipsum dolor sit amet consectetur.
</h2>
<h1 style="font-weight: 800" class="uppercase text-[40px] text-center 2xl:text-[60px] 2xl:font-extrabold">
Emotional <br />
Intelligence <span class="speaker">Speaker</span> <br />
& Author
</h1>
<a style="font-weight: 600"
class="bg-[rgba(241,225,228,1)] mt-10 text-[14px] text-[#274C69] border border-gray-300 rounded-[40px] px-[50px] py-[10px]"
href="#">
Learn More
</a>
</div>
</section>
<!-- Introduction Section -->
<section class="md:w-auto lg:w-[100%] lg:m-[60px] xl:w-[100%] flex flex-col md:flex-row m-4 z-10 w-full intro-section">
<!-- Text Content -->
<div class="w-full md:w-[50%] flex justify-center items-center z-10 p-4 sm:p-0 2xl:w-[790px] 2xl:h-[790px] 2xl:left-[160px]">
<div>
<h2 class="text-[28px] md:text-[40px] mt-8 md:mt-12 px-6 md:px-[23px] text-[#376489] font-bold mb-4 font-[400] sm:pr-0 font-brittany 2xl:text-[60px] 2xl:leading-2">
Hi, I'm <span class="text-[#C1989F]">Stephanie</span>
</h2>
<div class="text-[#274C69] leading-[22px] md:leading-[17px] px-6 md:px-[23px] font-[500] space-y-4 md:space-y-6 text-[16px] md:text-[14px] 2xl:text-[20px] 2xl:leading-[29.1px]">
<p>
Lorem ipsum dolor sit amet consectetur. Nibh consectetur mi nulla nec. Risus id risus risus duis quisque dignissim amet. Tempus enim volutpat elit vel a nisl eu felis. Leo eget donec ullamcorper adipiscing faucibus blandit. Tellus sem facilisis proin amet sit egestas purus.
</p>
<p>
Lorem ipsum dolor sit amet consectetur. Nibh consectetur mi nulla nec. Risus id risus risus duis quisque dignissim amet. Tempus enim volutpat elit vel a nisl eu felis. Leo eget donec ullamcorper senectus consequat. Hendrerit sed enim habitasse in.
</p>
<p>
Lorem ipsum dolor sit amet consectetur. Nibh consectetur mi nulla nec. Risus id risus risus duis quisque dignissim amet. Tempus enim volutpat elit vel a nisl eu felis. Leo eget donec ullamcorper senectus consequat. Hendrerit sed enim habitasse in. Sed tempor ullamcorper adipiscing faucibus blandit.
</p>
</div>
</div>
</div>
<!-- Image Section -->
<div class="w-full md:w-1/2 flex justify-center items-center p-4 relative">
<img class="w-[85%] md:w-[75%]" src="assets/section1.png" alt="Image">
</div>
</section>
<!-- Section 2: Why Emotional Intelligent Parenting? -->
<section class="flex flex-col-reverse md:flex-row relative m-4 md:m-0 mb-[2px] pb-[30px] w-full overflow-hidden md:justify-center">
<!-- Background Image -->
<div class="absolute w-full top-[490px] md:top-auto md:-bottom-[200px] -z-[50]">
<div class="relative">
<img src="assets/Emotional-Intelligence-bg.jpg" class="w-full" alt="Background Image" />
<div class="absolute w-full h-full left-0 top-0 gradiant-bg-color-img"></div>
</div>
</div>
<!-- Image Section (below text on small devices) -->
<div class="w-full md:w-[40%] md:w-[45%] flex justify-center items-center p-4 relative md:p-0">
<img class="w-[85%] md:w-[100%]" src="assets/section-2.png" alt="Image" />
</div>
<!-- Text Content -->
<div class="w-full md:w-[50%] flex justify-start items-center">
<div>
<h2 class="text-[28px] md:text-[34px] mt-8 md:mt-12 px-4 md:px-[23px] text-[#376489] font-bold mb-4 font-[400]">
<span class="font-mangolia">Why </span>
<span class="text-[#C1989F] uppercase font-[800]">Emotional Intelligence</span>
<br />
<span class="font-montserrat uppercase font-[800]">Parenting?</span>
</h2>
<div class="text-[#274C69] leading-[22px] md:leading-[17px] px-4 md:px-[23px] font-[500] space-y-4 md:space-y-6 text-[16px] md:text-[14px]">
<p>
Emotionally intelligent parents positively manage their own emotions whilst confidently supporting their child's 'big'
emotions, such as frustration, anger, and anxiety. The result is a more calm, connected home where life just starts to flow.
</p>
<p>
Emotional intelligence is fast becoming sought after in schools for both educators and their students. Research shows classrooms
are calmer, run more smoothly and even record fewer behavior reports.
</p>
<p>
In short, Emotional Intelligence is the way forward for raising humans who are empathetic, self-aware, kind, and resilient.
</p>
</div>
</div>
</div>
</section>
<!-- Section 3: Image Banner -->
<section class="relative flex overflow-x-hidden items-center justify-center 2xl:justify-between lg:justify-between h-[80%] w-full bg-cover bg-center bg-left 2xl:h-[262px]" id="_image-banner">
<div class="flex-shrink-0 p-2">
<img class="w-[80%] resize-image" src="assets/banner/first.png" alt="Image" />
</div>
<div class="flex-shrink-0 p-2">
<img class="w-[80%] resize-image" src="assets/banner/second.png" alt="Image" />
</div>
<div class="flex-shrink-0 p-2">
<img class="w-[80%] resize-image" src="assets/banner/third.png" alt="Image" />
</div>
<div class="flex-shrink-0 p-2">
<img class="w-[80%] resize-image" src="assets/banner/fourth.png" alt="Image" />
</div>
<div class="flex-shrink-0 p-2">
<img class="w-[80%] resize-image" src="assets/banner/fifth.png" alt="Image" />
</div>
<div class="flex-shrink-0 p-2">
<img class="w-[80%] resize-image" src="assets/banner/sixth.png" alt="Image" />
</div>
<div class="flex-shrink-0 p-2">
<img class="w-[80%] resize-image" src="assets/banner/seventh.png" alt="Image" />
</div>
</section>
<!-- Section 4: Podcast -->
<section class="my-6 mx-4 md:my-20 md:mx-6" id="podcast-section">
<!-- Heading of section -->
<div class="pod-heading-cards text-[24px] md:text-[34px] text-center">
<div class="text-[#376489] font-montserrat uppercase font-[800]">
<h1>Emotional Intelligent Parenting</h1>
<h1 class="leading-7 text-[#C1989F] text-[20px] md:text-[34px]">with Stephanie PINTO</h1>
</div>
<h1 class="pod font-mangolia text-[#C1989F] text-[30px] md:text-[40px] mt-2 md:mt-3">Podcast</h1>
</div>
<div class="mt-4 flex flex-col md:flex-row md:flex-wrap justify-center gap-8">
<!-- Card1 -->
<div class="flex-shrink-0 w-full md:w-[19rem] h-[auto] md:h-[45rem] Heading-pink" id="card1">
<div class="relative bg-transparent mx-2">
<div class="relative overflow-hidden">
<div class="mx-6 border border-[#cfafb3] flex items-center justify-center h-4"></div>
<img alt="Parent Courses" class="w-full h-[12rem] md:h-[20rem] object-cover sm:bg-center" src="assets/cards/card-1.jpg" />
</div>
<div class="relative w-full">
<div class="absolute w-[90%] mx-[5%] p-3 -top-5 bg-[#F1E1E4] text-center heading-container-pink">
<div class="mx-12 absolute title-container inset-x-0 -top-2 py-1 bg-[#C1989F] flex justify-center">
<h2 class="text-[#FAF5F0] font-montserrat text-sm font-medium">Episode - 40</h2>
</div>
<div class="mt-6 mb-4">
<p class="timing text-[#C1989F] font-montserrat text-lg md:text-xl uppercase w-[95%] mx-auto font-bold">Timing Your Triggers with</p>
<p class="emo font-mangolia text-xl md:text-2xl text-[#C1989F] mt-3">Emotional Intelligence</p>
<p class="with-steph text-gray-700 text-xs md:text-sm my-6">With Stephanie Pinto</p>
<button class="listen mt-4 bg-[#C1989F] text-[#F1E1E4] uppercase text-xs md:text-sm py-2 px-6 md:px-12 rounded-full w-[80%]">Listen Now</button>
</div>
</div>
</div>
</div>
</div>
<!-- Card2 -->
<div class="flex-shrink-0 w-full md:w-[19rem] h-[auto] md:h-[45rem] Heading-blue" id="card2">
<div class="relative bg-transparent mx-2">
<div class="relative overflow-hidden">
<div class="mx-6 border border-[#92b2d1] flex items-center justify-center h-4"></div>
<img alt="Parent Courses" class="w-full h-[12rem] md:h-[20rem] object-cover" src="assets/cards/card-2.jpg" />
</div>
<div class="relative w-full">
<div class="absolute w-[90%] mx-[5%] p-3 -top-5 bg-[#C2D5E4] text-center heading-container-blue">
<div class="mx-12 absolute title-container-blue inset-x-0 -top-2 py-1 bg-[#376489] flex justify-center">
<h2 class="text-[#FAF5F0] font-montserrat text-sm font-medium">Episode - 39</h2>
</div>
<div class="mt-6 mb-4">
<p class="redefining text-[#376489] font-montserrat text-lg md:text-xl uppercase w-[95%] mx-auto font-bold">Redefining Fatherhood with</p>
<p class="daniel font-mangolia text-xl md:text-2xl text-[#376489] mt-3">Daniel Franco</p>
<p class="with-steph text-gray-700 text-xs md:text-sm my-6">With Stephanie Pinto</p>
<button class="listen mt-4 bg-[#376489] text-[#F1E1E4] uppercase text-xs md:text-sm py-2 px-6 md:px-12 rounded-full w-[80%]">Listen Now</button>
</div>
</div>
</div>
</div>
</div>
<!-- Card3 -->
<div class="flex-shrink-0 w-full md:w-[19rem] h-[auto] md:h-[45rem] Heading-pink" id="card3">
<div class="relative bg-transparent mx-2">
<div class="relative overflow-hidden">
<div class="mx-6 border border-[#cfafb3] flex items-center justify-center h-4"></div>
<img alt="Parent Courses" class="w-full h-[12rem] md:h-[20rem] object-cover" src="assets/cards/card-3.jpg" />
</div>
<div class="relative w-full">
<div class="absolute w-[90%] mx-[5%] p-3 -top-5 bg-[#F1E1E4] text-center heading-container-pink">
<div class="mx-12 absolute title-container inset-x-0 -top-2 py-1 bg-[#C1989F] flex justify-center">
<h2 class="text-[#FAF5F0] font-montserrat text-sm font-medium">Episode - 38</h2>
</div>
<div class="mt-6 mb-4">
<p class="text-[#C1989F] font-montserrat text-lg md:text-xl uppercase w-[95%] mx-auto font-bold">Respond Not React: Mastering Your</p>
<p class="font-mangolia text-xl md:text-2xl text-[#C1989F] mt-3">Emotional Reaction</p>
<p class="text-gray-700 text-xs md:text-sm my-6">With Stephanie Pinto</p>
<button class="mt-4 bg-[#C1989F] text-[#F1E1E4] uppercase text-xs md:text-sm py-2 px-6 md:px-12 rounded-full w-[80%]">Listen Now</button>
</div>
</div>
</div>
</div>
</div>
<!-- Card4 -->
<div class="flex-shrink-0 w-full md:w-[19rem] h-[auto] md:h-[45rem] Heading-blue" id="card4">
<div class="relative bg-transparent mx-2">
<div class="relative overflow-hidden">
<div class="mx-6 border border-[#92b2d1] flex items-center justify-center h-4"></div>
<img alt="Parent Courses" class="w-full h-[12rem] md:h-[20rem] object-cover" src="assets/cards/card-4.jpg" />
</div>
<div class="relative w-full">
<div class="absolute w-[90%] mx-[5%] p-3 -top-5 bg-[#C2D5E4] text-center heading-container-blue">
<div class="mx-12 absolute title-container-blue inset-x-0 -top-2 py-1 bg-[#376489] flex justify-center">
<h2 class="text-[#FAF5F0] font-montserrat text-sm font-medium">Episode - 37</h2>
</div>
<div class="mt-6 mb-4">
<p class="text-[#376489] font-montserrat text-lg md:text-xl uppercase w-[95%] mx-auto font-bold">When Validating Your Child’s</p>
<p class="font-mangolia text-xl md:text-2xl text-[#376489] mt-3">Emotions Backfires</p>
<p class="text-gray-700 text-xs md:text-sm my-6">With Stephanie Pinto</p>
<button class="mt-4 bg-[#376489] text-[#F1E1E4] uppercase text-xs md:text-sm py-2 px-6 md:px-12 rounded-full w-[80%]">Listen Now</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="flex justify-center mt-10" id="cards-btn">
<a href="#" class="bg-[#376489] text-[#F1E1E4] uppercase text-sm md:text-base rounded-full py-3 px-6 md:px-14">All Episodes</a>
</div>
</section>
<!-- Section 5 Here's How I can Help -->
<section class="relative w-full my-10" id="_section-5">
<div class="relative py-10 text-white pl-24 w-[60%] md:pl-[24px] lg:pl-[96px]" id="_section-5-content">
<div class="text-[34px] md:mt-0 lg:mt-24 text-[#274C69] font-montserrat mt-24 font-extrabold mb-4" id="_section-5-title">
<h1 class="md:leading-8">
<span class="uppercase">Here's How I can Help</span>
<span class="font-mangolia text-[39px] section5-you">You?</span>
</h1>
</div>
<div class="content w-[83%] font-semibold text-[#274C69] text-sm">
<p>
Lorem ipsum dolor sit amet consectetur. Nibh consectetur mi nulla
nec. Risus id risus risus duis quisque dignissim amet. Tempus enim
volutpat elit vel a nisl eu felis. Leo eget donec ullamcorper
adipiscing faucibus blandit. Tellus sem facilisis proin amet sit
egestas purus. Urna feugiat morbi pharetra turpis enim posuere ut
massa velit. Amet mattis volutpat sit leo dolor pellentesque nunc.
</p>
<p class="mt-5">
Lorem ipsum dolor sit amet consectetur. Nibh consectetur mi nulla
nec. Risus id risus risus duis quisque dignissim amet. Tempus enim
volutpat elit vel a nisl eu felis. Leo eget donec ullamcorper
senectus consequat. Hendrerit sed enim habitasse in.
</p>
</div>
<div class="section-5_con2" id="_section-5-title2">
<h1 class="text-[39px] text-[#274C69] font-mangolia font-normal my-4">
Lorem ipsum dolor sit
</h1>
<p class="w-[83%] font-semibold text-[#274C69] text-sm">
Lorem ipsum dolor sit amet consectetur. Nibh consectetur mi nulla
nec. Risus id risus risus duis quisque dignissim amet. Tempus enim
volutpat elit vel a nisl eu felis. Leo eget donec ullamcorper
adipiscing faucibus blandit. Tellus sem facilisis
</p>
</div>
<div class="mt-7" id="_section-5-book-free-consult-btn">
<a href="#" class="bg-[#376489] font-raleway text-[#F1E1E4] uppercase text-xs rounded-full py-3 px-14">
Book Free Consult
</a>
</div>
</div>
</section>
<!-- Section Offerings -->
<section class="md:h-screen lg:h-screen mx-10 mb-28 mt-20 section-off-wrapper">
<div class="md:h-[70vh]">
<div>
<div>
<h1 class="title-heading my-10">Offerings</h1>
</div>
<div class="flex justify-center">
<!-- first card -->
<div class="md:hidden lg:inline xl:inline max-w-[400px] md:max-w-[400px] lg:max-w-[400px] Offerings-hover-blue mx-auto bg-transparent p-1" id="offerings-card1">
<div class="relative">
<div class="w-full h-72 overflow-hidden">
<img src="assets/photo-563 2.png" alt="Events & Workshops"
class="object-cover scale-[1.5] Offerings-hover-blue-img"/>
</div>
<div class="mx-12 gradiant-border-blue absolute inset-x-0 -top-5 bg-[#C2D5E4] bg-opacity-80 flex items-center justify-center h-16">
<h2 class="text-[#274C69] gradiant-border-blue-text font-montserrat leading-6 font-bold text-center text-lg uppercase">
Events &<br />Workshops
</h2>
</div>
</div>
<div class="relative">
<div class="absolute mx-4 font-montserrat font-medium p-3 Offerings-hover-blue-text py-6 bg-[#C2D5E4] text-center">
<p class="text-[#274C69] text-xs w-[90%] mx-auto">
Lorem ipsum dolor sit amet consectetur. Felis tristique
vulputate aliquam turpis molestie elementum. Odio urna ...
Lorem ipsum dolor sit amet consectetur. Felis tristique
vulputate aliquam turpis molestie elementum.
</p>
<button class="mt-4 bg-[#376489] text-white py-2 text-xs px-12 rounded-full transition">
READ MORE
</button>
</div>
<div class="mx-2 p-3 py-6 bg-[#F1E1E4]"></div>
</div>
</div>
<!-- second card -->
<div class="md:hidden lg:inline xl:inline max-w-[400px] Offerings-hover Offerings-hover-pink mx-auto bg-transparent p-1" id="offerings-card2">
<div class="relative">
<div class="w-full h-72 overflow-hidden">
<img src="assets/IMG_9190 1.png" alt="Events & Workshops"
class="w-full h-72 object-cover scale-[1.5] Offerings-hover-pink-img"/>
</div>
<div class="mx-12 gradiant-border-pink absolute inset-x-0 -top-5 bg-[#F1E1E4] bg-opacity-80 flex items-center justify-center h-16">
<h2 class="text-[#C1989F] gradiant-border-pink-text font-montserrat leading-6 font-bold text-center text-lg uppercase">
Group or private <br />Coaching
</h2>
</div>
</div>
<div class="relative">
<div
class="absolute mx-4 font-montserrat font-medium p-3 Offerings-hover-pink-text py-6 bg-[#F1E1E4] text-center"
>
<p class="text-[#274C69] text-xs w-[90%] mx-auto">
Lorem ipsum dolor sit amet consectetur. Felis tristique
vulputate aliquam turpis molestie elementum. Odio urna ...
Lorem ipsum dolor sit amet consectetur. Felis tristique
vulputate aliquam turpis molestie elementum.
</p>
<button
class="mt-4 bg-[#C1989F] text-white py-2 text-xs px-12 rounded-full transition"
>
READ MORE
</button>
</div>
<div class="mx-2 p-3 py-6 bg-[#C2D5E4]"></div>
</div>
</div>
<!-- third card -->
<div class="max-w-[400px] Offerings-hover-blue mx-auto bg-transparent p-1" id="offerings-card3">
<div class="relative">
<div class="w-full h-72 overflow-hidden">
<img
src="assets/Offerings-img-03.png"
alt="Events & Workshops"
class="w-full object-cover scale-[1.1] Offerings-hover-blue-img"
/>
</div>
<div
class="mx-12 gradiant-border-blue absolute inset-x-0 -top-5 bg-[#C2D5E4] bg-opacity-80 flex items-center justify-center h-16"
>
<h2
class="text-[#274C69] gradiant-border-blue-text font-montserrat leading-6 font-bold text-center text-lg uppercase"
>
Parent <br />Courses
</h2>
</div>
</div>
<div class="relative">
<div
class="absolute mx-4 font-montserrat font-medium p-3 py-6 bg-[#C2D5E4] text-center Offerings-hover-blue-text"
>
<p class="text-[#274C69] text-xs w-[90%] mx-auto">
Lorem ipsum dolor sit amet consectetur. Felis tristique
vulputate aliquam turpis molestie elementum. Odio urna ...
Lorem ipsum dolor sit amet consectetur. Felis tristique
vulputate aliquam turpis molestie elementum.
</p>
<button
class="mt-4 bg-[#376489] text-white py-2 text-xs px-12 rounded-full transition"
>
READ MORE
</button>
</div>
<div class="mx-2 p-3 py-6 bg-[#F1E1E4]"></div>
</div>
</div>
<!-- third card end -->
</div>
</div>
<div class="lg:hidden xl:hidden flex justify-center items-center md:mt-[180px] offerings-cards-slide-icon">
<img src="assets/mobile/icon-slider.png" alt="Slide Icon">
</div>
</div>
</section>
<!-- Section How it Works -->
<section class="h-max mt-10 mb-20 sm:pb-[60px] md:pb-[60px] lg:pb-[60px] _how-it-works">
<div>
<div class="pt-7">
<h1 class="text-center title-heading text-white">How it works?</h1>
</div>
<div class="grid sm:grid-cols-2 md:grid-cols-4 lg:grid-cols-4 justify-evenly items-center" id="_hiw-grid-wrap">
<!-- step 1 -->
<div class="max-w-sm flex flex-col items-center relative">
<svg class="absolute right-[-83%] z-[50] top-[12px] sm:invisible"
width="280"
height="1"
viewBox="0 0 332 1"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<line
x1="0.5"
y1="0.5"
x2="331.5"
y2="0.5"
stroke="#274C69"
stroke-linecap="round"
stroke-dasharray="12 12"/>
</svg>
<img class="w-20"
src="assets/sectionWork/IconWork.png"
alt="icon-1"/>
<h2 class="text-[#376489] font-montserrat uppercase text-center leading-5 font-bold mt-3 text-[17px]">
Lorem Ipsum <br />
Dolor Sit
</h2>
<p class="text-center text-[11px] mt-3 text-[#274C69] font-medium leading-4">
Lorem ipsum dolor sit amet consectetur <br />Felis tristique
vulputate aliquam turpis <br />
molestie elementum.
</p>
</div>
<!-- step 2 -->
<div class="max-w-sm flex flex-col items-center relative">
<svg class="absolute right-[-83%] z-[50] top-[12px] sm:invisible"
width="280"
height="1"
viewBox="0 0 332 1"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<line
x1="0.5"
y1="0.5"
x2="331.5"
y2="0.5"
stroke="#274C69"
stroke-linecap="round"
stroke-dasharray="12 12"/>
</svg>
<img class="w-20"
src="assets/sectionWork/icon.png"
alt="icon-2"/>
<h2 class="text-[#376489] font-montserrat uppercase text-center leading-5 font-bold mt-3 text-[17px]">
Lorem Ipsum <br />
Dolor Sit
</h2>
<p class="text-center text-[11px] mt-3 text-[#274C69] font-medium leading-4">
Lorem ipsum dolor sit amet consectetur <br />Felis tristique
vulputate aliquam turpis <br />
molestie elementum.
</p>
</div>
<!-- step 3 -->
<div class="max-w-sm flex flex-col items-center relative">
<svg class="absolute right-[-83%] z-[50] top-[12px] sm:invisible"
width="280"
height="1"
viewBox="0 0 332 1"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<line
x1="0.5"
y1="0.5"
x2="331.5"
y2="0.5"
stroke="#274C69"
stroke-linecap="round"
stroke-dasharray="12 12"/>
</svg>
<img class="w-20"
src="assets/sectionWork/IconWork3.png"
alt="icon-3"/>
<h2 class="text-[#376489] font-montserrat uppercase text-center leading-5 font-bold mt-3 text-[17px]">
Lorem Ipsum <br />
Dolor Sit
</h2>
<p class="text-center text-[11px] mt-3 text-[#274C69] font-medium leading-4">
Lorem ipsum dolor sit amet consectetur <br />Felis tristique
vulputate aliquam turpis <br />
molestie elementum.
</p>
</div>
<!-- step 4 -->
<div class="max-w-sm flex flex-col items-center">
<img class="w-20"
src="assets/sectionWork/IconWork4.png"
alt="icon-4"/>
<h2 class="text-[#376489] font-montserrat uppercase text-center leading-5 font-bold mt-3 text-[17px]">
Lorem Ipsum <br />
Dolor Sit
</h2>
<p class="text-center text-[11px] mt-3 text-[#274C69] font-medium leading-4">
Lorem ipsum dolor sit amet consectetur <br />Felis tristique
vulputate aliquam turpis <br />
molestie elementum.
</p>
</div>
</div>
</div>
</section>
<!-- Section Latest Blog -->
<section class="mx-10 w-full sm:w-[95%] md:w-[100%] md:ml-0 md:mr-0 lg:ml-[40px] lg:mr-[40px]" id="sec-latest-blog">
<div>
<h1 class="title-heading">
Latest <span class="text-[#C1989F]">Blogs</span>
</h1>
</div>
<!-- md:flex-row lg:flex-row -->
<!-- sm:flex-col -->
<div class="container mt-10 w-[95%] sm:w-auto sm:justify-center ">
<div class="md:pl-[20px] lg:pl-[0px] flex flex-row sm:flex-col md:flex-row lg:flow-row gap-8" id="latest-blog-con-flex">
<!-- left section -->
<div class="md:ml-0 item-left-sec ml-[70px] w-[470px] h-[520px] relative overflow-hidden" id="_text-reminder">
<div class="w-full h-full bg-cover bg-center latest-blog-hero">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent flex flex-col justify-end p-6 text-white">
<p class="text-center text-sm mb-2">SEPTEMBER 6, 2023</p>
<h2 class="text-center font-montserrat text-[#F1E1E4] text-xl font-bold mb-4">
A REMINDER TO ALL PARENTS: YOU DON'T HAVE TO GET IT 'RIGHT'
ALL
<br />
THE TIME.
</h2>
<button class="mx-auto w-[45%] text-xs bg-[#c1989f] text-[#F1E1E4] rounded-full py-2 px-6 text-white">
READ MORE
</button>
</div>
</div>
</div>
<!-- Right Section -->
<div class="item-right-sec w-1/2 sm:w-[95%]" id="blog-post-wrapper">
<div class="space-y-6">
<!-- Blog 1 -->
<div class="flex overflow-hidden border-none shadow-none">
<img
alt="Blog image 1"
class="w-1/3 object-cover"
src="assets/blog-images/image1.png"/>
<div class="flex-1 py-2 px-4">
<p class="text-xs text-[#376489] font-montserrat font-mediummb-2">
OCTOBER 31, 2023
</p>
<h3 class="text-md font-bold leading-5 my-2 text-[#376489]">
WHY VALIDATING YOUR CHILD'S <br />EMOTIONS CAN BACKFIRE
(AND WHAT TO <br />
DO INSTEAD)
</h3>
<button class="bg-[#376489] rounded-full py-1.5 text-[#F1E1E4] px-6 text-[10px] text-white">
READ MORE
</button>
</div>
</div>
<!-- Blog 2 -->
<div class="flex overflow-hidden border-none shadow-none">
<img
alt="Blog image 2"
class="w-1/3 h-40 object-cover"
src="assets/blog-images/image2.png"
/>
<div class="flex-1 py-2 px-4">
<p
class="text-xs text-[#376489] font-montserrat font-medium mb-2"
>
JUNE 20, 2023
</p>
<h3 class="text-md font-bold mb-2 text-[#376489]">
EMBRACING THE CHAOS: USING EMOTIONAL INTELLIGENCE TO MOVE
THROUGH ANGER.
</h3>
<button
class="bg-[#376489] rounded-full py-1.5 text-[#F1E1E4] px-6 text-[10px] text-white"
>
READ MORE
</button>
</div>
</div>
<!-- Blog 3 -->
<div class="flex overflow-hidden border-none shadow-none">
<img
alt="Blog image 3"
class="w-1/3 h-40 object-cover"
src="assets/blog-images/image3.png"
/>
<div class="flex-1 py-2 px-4">
<p
class="text-xs text-[#376489] font-montserrat font-medium mb-2"
>
APRIL 21, 2023
</p>
<h3 class="text-md font-bold mb-2 text-[#376489]">
HOW TO STOP STRUGGLING AND START EMBRACING YOUR CHILD'S
BIG EMOTIONS.
</h3>
<button
class="bg-[#376489] rounded-full py-1.5 text-[#F1E1E4] px-6 text-[10px] text-white"
>
READ MORE
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<button class="mt-10 ml-[38vw] sm:ml-[28.84vw] md:ml-[38vw] lg:ml-[38vw] bg-[#c1989f] my-20 text-white py-2 text-sm px-16 py-2 rounded-full" id="sec-lblog-btn">
<span class="read-more">READ MORE</span>
<span class="all-blogs hidden">ALL BLOGS</span>
</button>
</section>
<!-- Section - Subscribe -->
<section class="my-24 sm:w-full">
<div class="relative w-full my-10 subscribe-section">
<div class="flex justify-around h-full">
<!-- subscribe content section -->
<div class="text-center w-[35%]" id="subscribe-content-section">
<div class="border-[#738CA5] relative mt-20">
<img src="assets/Group 35.png" alt="" />
</div>
<p class="mt-10 font-semibold text-center text-center w-[88%] mx-auto text-sm font-montserrat text-[#274C69]">
Lorem ipsum dolor sit amet consectetur. Nibh consectetur mi nulla
nec. Risus id risus risus duis quisque dignissim amet. Tempus enim
volutpat elit vel a nisl eu felis. Leo eget donec ullamcorper
adipiscing
</p>
<div class="relative flex justify-center mt-8 sm:mt-3">
<input placeholder="Enter Email ID"
class="w-full max-w-[25rem] rounded-full border bg-white border-white bg-transparent px-3 py-2.5 pr-20 text-sm font-normal text-blue-gray-700"/>
<button class="absolute right-0 top-0 bottom-0 w-[30%] sm:w-[90px] z-10 rounded-full bg-[#376489] py-1 px-8 sm:pl-[20px] text-xs font-bold uppercase text-white">
SUBMIT
</button>
</div>
</div> <!-- end subscribe content section -->
<!-- subscribe image section -->
<div class="relative hidden lg:block sm:block" id="subscribe-image-section">
<div class="relative -mt-[9rem]" id="_mt9rem">
<img class="w-[24rem] sm:w-[320px] md:w-[24rem] lg:w-[24rem]" src="assets/subscribe.png" alt="" />
</div>
</div> <!-- end subscribe image section -->
</div>
</div>
</section>
<!-- Section - Footer -->
<footer class="mt-16 mb-6" id="footer-section-links">
<div class="container mx-auto grid grid-cols-12 sm:grid-cols-1 md:grid-cols-12 lg:grid-cols-12 gap-8 justify-center lfc-container" id="footer-section-container">
<!-- Logo Section -->
<div class="flex col-span-4 flex-col items-center logo-section logo-section-items">
<img
alt="Logo"
class="mb-4 w-auto h-24"
src="assets/logo.png"
style="object-fit: cover"/>
<div class="flex items-center ml-16 lg:ml-16 md:ml-10 mt-4 gap-5 flex-wrap">
<a href="#" class="rounded-md p-1.5 bg-[#376489]"><svg
width="15"
height="15"
viewBox="0 0 19 16"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M15.9082 2.77658C16.6804 2.29347 17.2583 1.53275 17.5338 0.63646C16.8081 1.08702 16.0142 1.40441 15.1862 1.5749C14.0384 0.304289 12.2197 -0.00492117 10.7465 0.820053C9.27323 1.64503 8.51013 3.39995 8.88359 5.10421C5.91111 4.94805 3.14174 3.47876 1.26458 1.06196C0.284931 2.83015 0.785553 5.09049 2.40864 6.22745C1.82171 6.20771 1.24781 6.04142 0.734766 5.74246C0.734766 5.75868 0.734766 5.77491 0.734766 5.79114C0.735105 7.633 1.97563 9.21955 3.70087 9.58457C3.15647 9.73956 2.58542 9.76238 2.03131 9.65129C2.5165 11.2264 3.9038 12.3055 5.48501 12.3377C4.17541 13.4133 2.55809 13.9966 0.89328 13.9937C0.598195 13.9942 0.303341 13.9764 0.0102539 13.9405C1.70083 15.0773 3.66845 15.6807 5.67799 15.6786C8.47373 15.6987 11.1605 14.5453 13.1374 12.4765C15.1142 10.4077 16.2162 7.59613 16.1968 4.67059C16.1968 4.50292 16.193 4.33614 16.1856 4.17027C16.9096 3.62271 17.5345 2.94439 18.0309 2.16718C17.3563 2.48005 16.6408 2.68546 15.9082 2.77658Z"
fill="white"
/>
</svg>
</a>
<a href="#" class="rounded-md p-0.5 bg-[#376489]"
><svg
width="22"
height="23"
viewBox="0 0 22 22"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M2.05322 11.0782C2.05427 15.538 5.27747 19.3353 9.65522 20.0343V13.6982H7.36931V11.0782H9.65792V9.08373C9.55561 8.13866 9.87644 7.19678 10.5334 6.51352C11.1904 5.83027 12.1154 5.47647 13.0575 5.54808C13.7338 5.55907 14.4083 5.61967 15.0758 5.7294V7.95867H13.9369C13.5448 7.907 13.1506 8.03729 12.8654 8.31284C12.5801 8.58839 12.4347 8.97937 12.47 9.37565V11.0782H14.9668L14.5676 13.6991H12.47V20.0343C17.2045 19.2815 20.5244 14.931 20.0247 10.1345C19.525 5.33809 15.3806 1.77484 10.5939 2.02619C5.80724 2.27754 2.05398 6.25549 2.05322 11.0782Z"
fill="white"
/>
</svg>
</a>
<a href="#" class="rounded-md p-1.5 bg-[#376489]"
><svg
width="15"
height="15"
viewBox="0 0 22 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M21.5072 0.376924C21.1383 0.0674733 20.5589 0.0231965 19.9599 0.261123H19.9589C19.3289 0.511214 2.1247 7.81153 1.42434 8.10979C1.29696 8.15358 0.184443 8.56424 0.299039 9.47897C0.401339 10.3037 1.29548 10.6452 1.40467 10.6847L5.7785 12.1662C6.06867 13.1218 7.1384 16.6474 7.37497 17.4006C7.52252 17.8702 7.76302 18.4871 8.18452 18.6141C8.55437 18.7552 8.92226 18.6263 9.16031 18.4414L11.8344 15.9877L16.1512 19.3181L16.2539 19.379C16.5471 19.5074 16.8279 19.5716 17.096 19.5716C17.303 19.5716 17.5017 19.5332 17.6916 19.4563C18.3383 19.1936 18.597 18.5839 18.6241 18.5148L21.8485 1.9344C22.0452 1.04886 21.7718 0.598308 21.5072 0.376924ZM9.6359 12.7589L8.16042 16.6513L6.68494 11.7857L17.997 3.51425L9.6359 12.7589Z"
fill="white"
/>
</svg>
</a>
<a href="#" class="rounded-md p-1.5 bg-[#376489]"
><svg
width="15"
height="15"
viewBox="0 0 22 17"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M21.3531 3.56565C21.1532 2.46478 20.2008 1.66308 19.0954 1.4128C17.4413 1.06279 14.3801 0.8125 11.068 0.8125C7.75782 0.8125 4.64757 1.06279 2.99152 1.4128C1.88813 1.66308 0.933699 2.41394 0.733796 3.56565C0.531934 4.81708 0.332031 6.56909 0.332031 8.82166C0.332031 11.0742 0.531934 12.8262 0.782792 14.0777C0.984654 15.1785 1.93713 15.9802 3.04051 16.2305C4.79652 16.5805 7.80682 16.8308 11.1189 16.8308C14.431 16.8308 17.4413 16.5805 19.1973 16.2305C20.3007 15.9802 21.2532 15.2294 21.4551 14.0777C21.655 12.8262 21.9058 11.0234 21.9568 8.82166C21.8549 6.56909 21.604 4.81708 21.3531 3.56565ZM8.35949 12.3257V5.31765L14.48 8.82166L8.35949 12.3257Z"
fill="white"
/>
</svg>
</a>
<a href="#" class="rounded-md p-1.5 bg-[#376489]"
><svg
width="15"
height="15"
viewBox="0 0 22 22"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.4237 0.109375H2.94767C1.52816 0.109375 0.373291 1.26424 0.373291 2.68375V19.1597C0.373291 20.5793 1.52816 21.7341 2.94767 21.7341H19.4237C20.8432 21.7341 21.998 20.5793 21.998 19.1597V2.68375C21.998 1.26424 20.8432 0.109375 19.4237 0.109375ZM17.3672 9.54343C17.2504 9.55424 17.132 9.56145 17.012 9.56145C15.6615 9.56145 14.4747 8.86688 13.7842 7.81705C13.7842 10.5711 13.7842 13.7046 13.7842 13.7572C13.7842 16.1817 11.8184 18.1475 9.3939 18.1475C6.96935 18.1475 5.00356 16.1817 5.00356 13.7572C5.00356 11.3326 6.96935 9.36682 9.3939 9.36682C9.48555 9.36682 9.57513 9.37506 9.66524 9.38073V11.5442C9.57513 11.5334 9.48658 11.5169 9.3939 11.5169C8.15614 11.5169 7.15316 12.5199 7.15316 13.7577C7.15316 14.9954 8.15614 15.9984 9.3939 15.9984C10.6317 15.9984 11.7247 15.0232 11.7247 13.7855C11.7247 13.7366 11.7464 3.69702 11.7464 3.69702H13.8141C14.0087 5.54594 15.5013 7.00509 17.3672 7.13896V9.54343Z"
fill="white"
/>
</svg>
</a>
<a href="#" class="rounded-md p-1.5 bg-[#376489]"
><svg
width="15"
height="15"
viewBox="0 0 23 17"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.0424 2.68368C17.1712 1.17788 14.211 0.922627 14.0843 0.913445C13.8878 0.896918 13.7005 1.0071 13.6197 1.1889C13.6123 1.19991 13.5481 1.34866 13.4764 1.58004C14.7141 1.78938 16.2346 2.2099 17.61 3.0638C17.8304 3.19969 17.8983 3.48983 17.7625 3.71019C17.6725 3.85526 17.5201 3.93423 17.3621 3.93423C17.2777 3.93423 17.1914 3.91035 17.1142 3.86261C14.749 2.39537 11.7962 2.32192 11.2269 2.32192C10.6577 2.32192 7.70298 2.39537 5.33962 3.86261C5.11925 4.00033 4.82911 3.93239 4.69322 3.71203C4.5555 3.48983 4.62344 3.20152 4.8438 3.0638C6.21922 2.21174 7.73971 1.78938 8.9774 1.58187C8.90579 1.34866 8.84152 1.20175 8.83601 1.1889C8.75337 1.0071 8.5679 0.893245 8.36958 0.913445C8.24287 0.922627 5.28269 1.17788 3.38575 2.70388C2.39596 3.62021 0.414551 8.97498 0.414551 13.6044C0.414551 13.687 0.436587 13.766 0.476987 13.8376C1.84322 16.2395 5.57283 16.8676 6.42306 16.8951C6.42673 16.8951 6.43224 16.8951 6.43775 16.8951C6.58833 16.8951 6.72972 16.8235 6.81787 16.7023L7.67728 15.5197C5.35798 14.921 4.17354 13.9037 4.10559 13.8431C3.91094 13.6723 3.89258 13.3749 4.0652 13.1802C4.23597 12.9855 4.53346 12.9672 4.72811 13.138C4.75566 13.1637 6.93723 15.0147 11.2269 15.0147C15.524 15.0147 17.7055 13.1563 17.7276 13.138C17.9222 12.969 18.2179 12.9855 18.3905 13.182C18.5613 13.3767 18.5429 13.6723 18.3482 13.8431C18.2803 13.9037 17.0959 14.921 14.7766 15.5197L15.636 16.7023C15.7241 16.8235 15.8655 16.8951 16.0161 16.8951C16.0216 16.8951 16.0271 16.8951 16.0308 16.8951C16.881 16.8676 20.6106 16.2395 21.9769 13.8376C22.0173 13.766 22.0393 13.687 22.0393 13.6044C22.0393 8.97498 20.0579 3.62021 19.0424 2.68368ZM8.17125 11.724C7.26226 11.724 6.52589 10.8829 6.52589 9.84357C6.52589 8.8042 7.26226 7.96316 8.17125 7.96316C9.08024 7.96316 9.81661 8.8042 9.81661 9.84357C9.81661 10.8829 9.08024 11.724 8.17125 11.724ZM14.2826 11.724C13.3736 11.724 12.6372 10.8829 12.6372 9.84357C12.6372 8.8042 13.3736 7.96316 14.2826 7.96316C15.1916 7.96316 15.928 8.8042 15.928 9.84357C15.928 10.8829 15.1916 11.724 14.2826 11.724Z"
fill="white"
/>
</svg>
</a>
</div>
</div> <!-- End Logo Section -->
<!-- <div class="about_courses-awards">
<div class="aca-col"> -->
<!-- About Section -->
<div class="flex col-span-2 flex-col gap-5 about-container about-courses-container">
<h3
class="font-bold font-montserrat text-2xl text-[#376489] mb-2 font-extrabold"
>
ABOUT
</h3>
<a
class="mb-2 text-[#274C69] underline text-sm font-bold uppercase"
href="#"
>Contact Us</a
>
<a class="mb-2 text-[#274C69] text-sm font-bold uppercase" href="#"
>Resources</a
>
<a class="mb-2 text-[#274C69] text-sm font-bold uppercase" href="#"
>Podcast</a
>
<a class="text-[#274C69] text-sm font-bold uppercase" href="#"
>Books</a
>
</div> <!-- End About Section -->
<!-- Courses Section -->
<div class="flex col-span-2 flex-col">
<h3
class="font-bold font-montserrat text-2xl text-[#376489] mb-2 font-extrabold"
>
COURSES
</h3>
<a class="mb-2 text-[#274C69] underline text-sm font-bold" href="#"
>Rising Emotional Intelligent Kids</a
>
<a class="mb-2 text-[#274C69] text-sm font-bold" href="#"
>Decoding & Defusing Your Child's Challenging Behavior</a
>
<a class="mb-2 text-[#274C69] text-sm font-bold" href="#"
>Supporting Anxious & Sensitive Kids</a
>
<a class="mb-2 text-[#274C69] text-sm font-bold" href="#"
>Help! I'm a Shouty Parent!</a
>
<a class="text-[#274C69] text-sm font-bold" href="#"
>Emotional Intelligence & Freedom Technique</a
>
</div> <!-- End Courses Section -->
<!-- </div> -->
<!-- Awards Section -->
<div class="flex col-span-3 flex-col" id="awards-section-images-flex">
<h3
class="font-bold font-montserrat text-2xl text-[#376489] mb-2 font-extrabold"
>
AWARDS
</h3>
<div class="flex space-x-2 lg:flex-col md:flex-col lg:space-x-0 md:space-x-0 md:gap-2 lg:gap-2">
<img
alt="Award 1"
class="w-[10rem] h-[10rem]"
src="assets/Ausmumpreneur profile pic 1.png"
style="aspect-ratio: 100/100; object-fit: cover"
/>
<img
alt="Award 1"
class="w-[10rem] h-[10rem]"
src="assets/BRONZE AusMumpreneur Awards WINNER 1.png"
style="aspect-ratio: 100/100; object-fit: cover"
/>
</div>
</div>
</div> <!-- End Awards Section -->
<!-- </div> -->
</footer>
<footer class="hidden mb-6" id="footer-section-component-small">
<!-- Logo Section -->
<div class="logo-section-container">
<img
alt="Logo"
class="mb-4 w-auto h-24 logo-footer"
src="assets/logo.png"
style="object-fit: cover"/>
<div class="social-links-icon">
<a href="#" class="rounded-md p-1.5 bg-[#376489]">
<svg
width="15"
height="15"
viewBox="0 0 19 16"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M15.9082 2.77658C16.6804 2.29347 17.2583 1.53275 17.5338 0.63646C16.8081 1.08702 16.0142 1.40441 15.1862 1.5749C14.0384 0.304289 12.2197 -0.00492117 10.7465 0.820053C9.27323 1.64503 8.51013 3.39995 8.88359 5.10421C5.91111 4.94805 3.14174 3.47876 1.26458 1.06196C0.284931 2.83015 0.785553 5.09049 2.40864 6.22745C1.82171 6.20771 1.24781 6.04142 0.734766 5.74246C0.734766 5.75868 0.734766 5.77491 0.734766 5.79114C0.735105 7.633 1.97563 9.21955 3.70087 9.58457C3.15647 9.73956 2.58542 9.76238 2.03131 9.65129C2.5165 11.2264 3.9038 12.3055 5.48501 12.3377C4.17541 13.4133 2.55809 13.9966 0.89328 13.9937C0.598195 13.9942 0.303341 13.9764 0.0102539 13.9405C1.70083 15.0773 3.66845 15.6807 5.67799 15.6786C8.47373 15.6987 11.1605 14.5453 13.1374 12.4765C15.1142 10.4077 16.2162 7.59613 16.1968 4.67059C16.1968 4.50292 16.193 4.33614 16.1856 4.17027C16.9096 3.62271 17.5345 2.94439 18.0309 2.16718C17.3563 2.48005 16.6408 2.68546 15.9082 2.77658Z"
fill="white"/>
</svg>
</a>
<a href="#" class="rounded-md p-0.5 bg-[#376489]">
<svg
width="22"
height="23"
viewBox="0 0 22 22"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M2.05322 11.0782C2.05427 15.538 5.27747 19.3353 9.65522 20.0343V13.6982H7.36931V11.0782H9.65792V9.08373C9.55561 8.13866 9.87644 7.19678 10.5334 6.51352C11.1904 5.83027 12.1154 5.47647 13.0575 5.54808C13.7338 5.55907 14.4083 5.61967 15.0758 5.7294V7.95867H13.9369C13.5448 7.907 13.1506 8.03729 12.8654 8.31284C12.5801 8.58839 12.4347 8.97937 12.47 9.37565V11.0782H14.9668L14.5676 13.6991H12.47V20.0343C17.2045 19.2815 20.5244 14.931 20.0247 10.1345C19.525 5.33809 15.3806 1.77484 10.5939 2.02619C5.80724 2.27754 2.05398 6.25549 2.05322 11.0782Z"
fill="white"/>
</svg>
</a>
<a href="#" class="rounded-md p-1.5 bg-[#376489]">
<svg
width="15"
height="15"
viewBox="0 0 22 20"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M21.5072 0.376924C21.1383 0.0674733 20.5589 0.0231965 19.9599 0.261123H19.9589C19.3289 0.511214 2.1247 7.81153 1.42434 8.10979C1.29696 8.15358 0.184443 8.56424 0.299039 9.47897C0.401339 10.3037 1.29548 10.6452 1.40467 10.6847L5.7785 12.1662C6.06867 13.1218 7.1384 16.6474 7.37497 17.4006C7.52252 17.8702 7.76302 18.4871 8.18452 18.6141C8.55437 18.7552 8.92226 18.6263 9.16031 18.4414L11.8344 15.9877L16.1512 19.3181L16.2539 19.379C16.5471 19.5074 16.8279 19.5716 17.096 19.5716C17.303 19.5716 17.5017 19.5332 17.6916 19.4563C18.3383 19.1936 18.597 18.5839 18.6241 18.5148L21.8485 1.9344C22.0452 1.04886 21.7718 0.598308 21.5072 0.376924ZM9.6359 12.7589L8.16042 16.6513L6.68494 11.7857L17.997 3.51425L9.6359 12.7589Z"
fill="white"/>
</svg>
</a>
<a href="#" class="rounded-md p-1.5 bg-[#376489]">
<svg
width="15"
height="15"
viewBox="0 0 22 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M21.3531 3.56565C21.1532 2.46478 20.2008 1.66308 19.0954 1.4128C17.4413 1.06279 14.3801 0.8125 11.068 0.8125C7.75782 0.8125 4.64757 1.06279 2.99152 1.4128C1.88813 1.66308 0.933699 2.41394 0.733796 3.56565C0.531934 4.81708 0.332031 6.56909 0.332031 8.82166C0.332031 11.0742 0.531934 12.8262 0.782792 14.0777C0.984654 15.1785 1.93713 15.9802 3.04051 16.2305C4.79652 16.5805 7.80682 16.8308 11.1189 16.8308C14.431 16.8308 17.4413 16.5805 19.1973 16.2305C20.3007 15.9802 21.2532 15.2294 21.4551 14.0777C21.655 12.8262 21.9058 11.0234 21.9568 8.82166C21.8549 6.56909 21.604 4.81708 21.3531 3.56565ZM8.35949 12.3257V5.31765L14.48 8.82166L8.35949 12.3257Z"
fill="white"/>
</svg>
</a>
<a href="#" class="rounded-md p-1.5 bg-[#376489]">
<svg
width="15"
height="15"
viewBox="0 0 22 22"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M19.4237 0.109375H2.94767C1.52816 0.109375 0.373291 1.26424 0.373291 2.68375V19.1597C0.373291 20.5793 1.52816 21.7341 2.94767 21.7341H19.4237C20.8432 21.7341 21.998 20.5793 21.998 19.1597V2.68375C21.998 1.26424 20.8432 0.109375 19.4237 0.109375ZM17.3672 9.54343C17.2504 9.55424 17.132 9.56145 17.012 9.56145C15.6615 9.56145 14.4747 8.86688 13.7842 7.81705C13.7842 10.5711 13.7842 13.7046 13.7842 13.7572C13.7842 16.1817 11.8184 18.1475 9.3939 18.1475C6.96935 18.1475 5.00356 16.1817 5.00356 13.7572C5.00356 11.3326 6.96935 9.36682 9.3939 9.36682C9.48555 9.36682 9.57513 9.37506 9.66524 9.38073V11.5442C9.57513 11.5334 9.48658 11.5169 9.3939 11.5169C8.15614 11.5169 7.15316 12.5199 7.15316 13.7577C7.15316 14.9954 8.15614 15.9984 9.3939 15.9984C10.6317 15.9984 11.7247 15.0232 11.7247 13.7855C11.7247 13.7366 11.7464 3.69702 11.7464 3.69702H13.8141C14.0087 5.54594 15.5013 7.00509 17.3672 7.13896V9.54343Z"
fill="white"/>
</svg>
</a>
<a href="#" class="rounded-md p-1.5 bg-[#376489]">
<svg width="15" height="15" viewBox="0 0 23 17" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M19.0424 2.68368C17.1712 1.17788 14.211 0.922627 14.0843 0.913445C13.8878 0.896918 13.7005 1.0071 13.6197 1.1889C13.6123 1.19991 13.5481 1.34866 13.4764 1.58004C14.7141 1.78938 16.2346 2.2099 17.61 3.0638C17.8304 3.19969 17.8983 3.48983 17.7625 3.71019C17.6725 3.85526 17.5201 3.93423 17.3621 3.93423C17.2777 3.93423 17.1914 3.91035 17.1142 3.86261C14.749 2.39537 11.7962 2.32192 11.2269 2.32192C10.6577 2.32192 7.70298 2.39537 5.33962 3.86261C5.11925 4.00033 4.82911 3.93239 4.69322 3.71203C4.5555 3.48983 4.62344 3.20152 4.8438 3.0638C6.21922 2.21174 7.73971 1.78938 8.9774 1.58187C8.90579 1.34866 8.84152 1.20175 8.83601 1.1889C8.75337 1.0071 8.5679 0.893245 8.36958 0.913445C8.24287 0.922627 5.28269 1.17788 3.38575 2.70388C2.39596 3.62021 0.414551 8.97498 0.414551 13.6044C0.414551 13.687 0.436587 13.766 0.476987 13.8376C1.84322 16.2395 5.57283 16.8676 6.42306 16.8951C6.42673 16.8951 6.43224 16.8951 6.43775 16.8951C6.58833 16.8951 6.72972 16.8235 6.81787 16.7023L7.67728 15.5197C5.35798 14.921 4.17354 13.9037 4.10559 13.8431C3.91094 13.6723 3.89258 13.3749 4.0652 13.1802C4.23597 12.9855 4.53346 12.9672 4.72811 13.138C4.75566 13.1637 6.93723 15.0147 11.2269 15.0147C15.524 15.0147 17.7055 13.1563 17.7276 13.138C17.9222 12.969 18.2179 12.9855 18.3905 13.182C18.5613 13.3767 18.5429 13.6723 18.3482 13.8431C18.2803 13.9037 17.0959 14.921 14.7766 15.5197L15.636 16.7023C15.7241 16.8235 15.8655 16.8951 16.0161 16.8951C16.0216 16.8951 16.0271 16.8951 16.0308 16.8951C16.881 16.8676 20.6106 16.2395 21.9769 13.8376C22.0173 13.766 22.0393 13.687 22.0393 13.6044C22.0393 8.97498 20.0579 3.62021 19.0424 2.68368ZM8.17125 11.724C7.26226 11.724 6.52589 10.8829 6.52589 9.84357C6.52589 8.8042 7.26226 7.96316 8.17125 7.96316C9.08024 7.96316 9.81661 8.8042 9.81661 9.84357C9.81661 10.8829 9.08024 11.724 8.17125 11.724ZM14.2826 11.724C13.3736 11.724 12.6372 10.8829 12.6372 9.84357C12.6372 8.8042 13.3736 7.96316 14.2826 7.96316C15.1916 7.96316 15.928 8.8042 15.928 9.84357C15.928 10.8829 15.1916 11.724 14.2826 11.724Z"
fill="white"/>
</svg>
</a>
</div>
</div> <!-- End Logo Section -->
<div class="about_courses-awards-wrapper">
<div class="about-courses-sections">
<!-- About Section -->
<div class="about-courses-section flex col-span-2 flex-col gap-5">
<h3 class="font-bold font-montserrat text-2xl text-[#376489] font-extrabold">
ABOUT</h3>
<a class="mb-2 text-[#274C69] underline text-sm font-bold uppercase" href="#">Contact Us</a>
<a class="mb-2 text-[#274C69] text-sm font-bold uppercase" href="#">Resources</a>
<a class="mb-2 text-[#274C69] text-sm font-bold uppercase" href="#">Podcast</a>
<a class="mb-2 text-[#274C69] text-sm font-bold uppercase" href="#">Books</a>
</div> <!-- End About Section -->
<!-- Courses Section -->
<div class="courses-section flex col-span-2 flex-col gap-5">
<h3 class="font-bold font-montserrat text-2xl text-[#376489] font-extrabold">
COURSES
</h3>
<a class="mb-2 text-[#274C69] underline text-sm font-bold uppercase" href="#"
>Rising Emotional Intelligent Kids</a>
<a class="mb-2 text-[#274C69] text-sm font-bold uppercase" href="#"