-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1100 lines (1095 loc) · 44.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<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="./dist/css/output.css" />
<link
rel="stylesheet"
href="https://unpkg.com/swiper/swiper-bundle.min.css"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="shortcut icon" href="./assets/favicon.svg" type="image/x-icon" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<title>
Clone Beautieslife.id | Indonesian Beautypreneur Community Clone
</title>
</head>
<body>
<nav class="bg-[#FEF8F8] px-4 py-7 sm:px-4 md:px-12 lg:px-8 xl:px-16">
<div
class="mx-auto flex flex-wrap items-center justify-between lg:px-auto"
>
<a href="./index.html" class="ml-2">
<img
loading="lazy"
class="h-7 w-32 sm:h-auto sm:w-auto lg:w-52"
src="./assets/logo.png"
alt=""
srcset=""
/>
</a>
<div class="flex lg:order-1">
<button
type="button"
class="shadow-custom mr-2 h-[35px] w-[80px] md:w-[90px] md:h-[36px] rounded-lg bg-[#EE9591] text-center text-[13px] font-medium text-white hover:bg-[#e0928e] focus:ring-4 focus:ring-blue-300 md:mr-3 md:py-2 md:px-3 md:text-[14px] lg:mr-3 lg:py-2 lg:px-3 xl:w-[90px] xl:h-[36px] xl:text-[14px]"
>
Registrasi
</button>
<button
id="toggle"
data-collapse-toggle="mobile-menu-4"
type="button"
class="mr-3 inline-flex items-center rounded-lg p-2 text-sm text-gray-500 lg:hidden"
aria-controls="mobile-menu-4"
aria-expanded="false"
>
<img
loading="lazy"
class="mx-auto h-5"
id="toggle"
src="./assets/iconHam.svg"
alt=""
srcset=""
/>
</button>
</div>
<div
class="md:font-primary hidden w-full items-center justify-between transition-all duration-500 ease-in-out lg:flex lg:w-auto"
id="mobile-menu-4"
>
<ul
class="mt-4 flex shrink flex-col lg:mt-0 lg:ml-0 lg:w-[27rem] lg:flex-row lg:justify-evenly lg:text-xl xl:text-[14px] lg:font-medium xl:ml-[18rem] xl:w-[30rem]"
>
<li>
<a
href="./pages/not-found.html"
class="block rounded py-2 pr-4 pl-3 text-[#555555] lg:p-0 lg:hover:text-[#EE9591]"
aria-current="page"
>Fasilitas</a
>
</li>
<li>
<a
href="./pages/not-found.html"
class="block py-2 pr-4 pl-3 text-[#555555] lg:p-0 lg:hover:text-[#EE9591]"
>Beautypreneur</a
>
</li>
<li>
<a
href="./pages/not-found.html"
class="block py-2 pr-4 pl-3 text-[#555555] lg:p-0 lg:hover:text-[#EE9591]"
>Brand Partner
</a>
</li>
</ul>
</div>
</div>
</nav>
<main>
<section class="wrapper-tagline bg-[#FEF8F8]">
<section
class="container-tagline flex py-16 px-4 sm:px-7 md:px-12 lg:justify-between lg:px-8 xl:px-16 lg:py-7 lg:mb-10"
>
<section class="tagline__article font-primary">
<header
class="flex font-black text-[#555555] md:flex-col md:items-start"
>
<h1
class="text-4xl md:order-2 md:text-7xl lg:text-5xl xl:text-[70px] 2xl:text-8xl"
>
Pasti berat <br />
kalo lari sendirian<span class="text-[#EE9591]">.</span>
</h1>
<img
id="changed"
class="target relative -top-10 right-5 z-20 h-20 md:static md:mb-7 md:h-12 lg:ml-1.5 lg:w-36"
src="./assets/pixel-pc.png"
alt=""
srcset=""
/>
</header>
<h3
class="mt-7 text-[#888888] md:pr-52 md:text-lg lg:mt-7 lg:pr-20 lg:text-xl xl:text-[16px] xl:pr-40 2xl:pr-80"
>
Setiap hal pasti butuh hal lain untuk membersamai. Begitupun
dengan bisnis, Beautieslfie.id hadir untuk membersamai kalian
untuk menjadi
<span class="font-bold underline">Beautypreneur</span>. Siapapun
kamu!!
</h3>
<section
class="tagline__who mt-4 flex flex-wrap justify-evenly font-bold text-[#888] md:w-[27rem] lg:mt-7 lg:w-full lg:pr-14 lg:text-lg xl:w-[38rem] xl:justify-between xl:text-[16px] 2xl:w-[50rem]"
>
<div
class="tagline__who--mahasiswa mt-3 flex items-center xl:mt-0"
>
<img
loading="lazy"
class="mr-1.5 lg:mr-2"
src="./assets/icon-1.png"
alt=""
srcset=""
/>
<h4>Mahasiswa</h4>
</div>
<div class="tagline__who--irt mt-3 flex items-center xl:mt-0">
<img
loading="lazy"
class="mr-1.5 lg:mr-2"
src="./assets/icon-1.png"
alt=""
srcset=""
/>
<h4>Ibu Rumah Tangga</h4>
</div>
<div class="tagline__who--ch mt-3 flex items-center xl:mt-0">
<img
loading="lazy"
class="mr-1.5 lg:mr-2"
src="./assets/icon-1.png"
alt=""
srcset=""
/>
<h4>Career Hunter</h4>
</div>
</section>
<section
class="tagline__community shadow-custom2 mt-12 rounded-lg bg-[#EE9591] px-3 py-3 text-center text-[#F6F6F6] md:w-[27rem] md:px-5 md:text-left lg:mt-14 lg:p-5 xl:w-[412px] 2xl:w-[55%] lg:mb-28"
>
<h3 class="text-base font-bold md:text-xl lg:text-2xl xl:text-xl">
1st Indonesian Beautypreneur Community
</h3>
<h4
class="mt-2 text-[#F6F6F6] md:text-sm lg:text-base xl:text-[14px]"
>
Dengan berbagai fasilitas “advance disigital platform”.
</h4>
</section>
</section>
<section id="blured" class="tagline__img blur-lg">
<img
loading="lazy"
class="hidden lg:block lg:w-[116rem] xl:w-[150rem] 2xl:w-[91rem]"
src="./assets/jumbotron.png"
alt=""
srcset=""
/>
</section>
</section>
</section>
<section class="wrapper-section2 sm:h-[46rem] lg:h-[35rem]">
<div
class="section2-parent flex w-auto flex-col py-10 px-4 sm:px-7 md:px-12 lg:px-8 xl:px-16 md:py-16 lg:mt-10 lg:flex-row lg:justify-between lg:py-36"
>
<div class="parent__text font-primary lg:w-[50%]">
<h2
class="text-heading font-primary mb-5 text-3xl font-bold lg:text-[40px]"
>
Beautypreneur.
</h2>
<h3 class="text-paragraph mb-5 font-medium lg:text-xl">
ˈbyo͞odē prəˈnər (noun)
</h3>
<h3 class="text-paragraph mb-2 lg:mr-28 lg:text-[16px] xl:text-lg">
Bukan sekedar bisnis yang hits dengan segudang untung. Tren
<span class="text-heading font-bold underline"
>beautypreneur</span
>
di Indonesia sudah mulai terlihat sejak beberapa tahun terakhir,
industri kecantikan dalam negeri maulai berkembang pesat.
</h3>
<div
class="h-[12px] w-[100px] rounded-full bg-[#EE9591] 2xl:h-[24px] 2xl:w-[200px]"
></div>
</div>
<div
class="parent__img mt-10 md:mt-20 flex flex-col md:flex-row md:justify-evenly lg:justify-between lg:mt-0 lg:w-[50%] lg lg:border-red-600 xl:w-[38rem]"
>
<div
class="left font-primary w-auto rounded-2xl border-8 border-[#F6F6F6] px-5 py-5 text-white md:w-72 lg:w-72 lg:shadow-inner"
>
<div class="heading flex justify-between">
<h6 class="text-[60px] font-bold text-white">50%</h6>
<img
loading="lazy"
class="h-16 w-auto"
src="./assets/mini-img01.png"
alt=""
srcset=""
/>
</div>
<p class="text-[14px]">
Bingung bagaimana caranya memulai bisnis healthy beauty.
Sedangkan demand di sektor ini begitu melimpah.
</p>
<p class="mt-3 text-[10px] opacity-60">
source involve.cewekbanget.id/beautypreneur
</p>
</div>
<div
class="right font-primary mt-8 w-auto rounded-2xl border-8 border-[#F6F6F6] bg-[#E38A86] px-5 py-5 text-white md:mt-0 md:w-72 md:shadow-inner lg:w-72"
>
<div class="heading flex justify-between">
<h6 class="text-[60px] font-bold text-white">23,7%</h6>
<img
loading="lazy"
class="h-16 w-auto"
src="./assets/mini-img01.png"
alt=""
srcset=""
/>
</div>
<p class="text-[14px]">
Khawatir butuh modal usaha yang sangat besar. Padahal banyak
cara agar dapat berbinis di sektor ini
</p>
<p class="mt-7 text-[10px] opacity-60">
source involve.cewekbanget.id/beautypreneur
</p>
</div>
</div>
</div>
</section>
<div
class="wrapper-section3 py-10 md:px-12 lg:px-8 xl:px-16 bg-[#FEF8F8]"
>
<div
class="section3-heading sm:mt-24 md:mt-0 text-center text-[26px] md:text-[40px] lg:text-[70px]"
>
<h3 class="text-heading font-primary font-bold px-4 md:px-0">
Beauty Selling <span class="text-brand">with</span> Digital
Pattern<span class="text-brand">.</span>
</h3>
<p
class="text-paragraph hidden sm:block sm:text-sm sm:mt-3 md:text-[16px]"
>
Pasar yang besar ditunjang dengan wadah yang tepat, insyaAllah akan
bebuah keberhasilan
</p>
</div>
<div
class="section3-contents mt-0 sm:mt-24 md:mt-16 lg:flex lg:justify-between lg:items-center lg:mt-28"
>
<div
id="changedSec3"
class="contents__tools flex justify-around items-center sm:justify-evenly lg:w-[55%] h-[21rem] md:h-[37rem]"
>
<div class="tools--sosmedetc">
<div
class="beautiesplat rounded-md bg-white flex flex-col justify-center items-center w-[150px] h-[116px] sm:w-[260px] sm:h-[180px] mb-5 sm:rounded-[16px] lg:py-0 lg:px-0 lg:w-[260px] lg:h-[180px] shadow-section2"
>
<img
loading="lazy"
class="h-[46px] sm:h-[96px]"
src="./assets/platform.png"
alt=""
srcset=""
/>
<h6
class="font-primary text-paragraph text-[12px] sm:text-[14px] font-medium mt-3 sm:self-center lg:self-start lg:ml-10 sm:mt-6"
>
Beautieslife.id Platform
</h6>
</div>
<div
class="sosmedplat rounded-md shadow-section2 bg-white flex flex-col justify-center items-center w-[150px] h-[116px] sm:w-[260px] sm:h-[180px] sm:mt-7 sm:rounded-[16px] lg:py-0 lg:px-0 lg:w-[260px] lg:h-[180px]"
>
<img
loading="lazy"
class="h-[46px] sm:h-[96px]"
src="./assets/sosmed.png"
alt=""
srcset=""
/>
<h6
class="font-primary text-paragraph text-[12px] sm:text-[14px] font-medium mt-3 sm:self-center lg:self-start lg:ml-10 sm:mt-6"
>
Social Media Platform
</h6>
</div>
</div>
<div class="tools--manahance md:-mt-56 lg:-mt-[10rem]">
<div
class="management rounded-md shadow-section2 bg-white flex flex-col justify-center items-center w-[150px] h-[116px] sm:w-[260px] sm:h-[180px] mb-5 sm:rounded-[16px] lg:mt-0 lg:py-0 lg:px-0 lg:w-[260px] lg:h-[180px]"
>
<img
loading="lazy"
class="h-[46px] sm:h-[96px]"
src="./assets/managements.png"
alt=""
srcset=""
/>
<h6
class="font-primary text-paragraph text-[12px] sm:text-[14px] font-medium mt-3 sm:self-center lg:self-start lg:ml-10 sm:mt-6"
>
Management Tools
</h6>
</div>
<div
class="enchance rounded-md shadow-section2 bg-white flex flex-col justify-center items-center w-[150px] h-[116px] sm:w-[260px] sm:h-[180px] sm:mt-7 sm:rounded-[16px] lg:py-0 lg:px-0 lg:w-[260px] lg:h-[180px]"
>
<img
loading="lazy"
class="h-[46px] sm:h-[96px]"
src="./assets/chat.png"
alt=""
srcset=""
/>
<h6
class="font-primary text-paragraph text-[12px] sm:text-[14px] font-medium mt-3 sm:self-center lg:self-start lg:ml-10 sm:mt-6"
>
Enhance Chat Tools
</h6>
</div>
</div>
</div>
<div class="contents__tagline px-4 mt-16 md:mt-16 lg:mt-0 lg:w-[39%]">
<div
class="none md:block md:h-[12px] md:w-[60px] md:rounded-full md:bg-[#EE9591] md:mb-5 lg:w-[100px]"
></div>
<h4
class="text-heading font-primary font-bold text-[28px] text-left mb-10 md:text-[40px] md:pr-14"
>
Bukan saatnya menunda
<span class="text-brand">digitalisasi</span>.
</h4>
<p
class="font-primary text-[14px] text-[#888888] mb-10 md:text-[16px]"
>
Ayo kita hadapi bersama era peralihan ini.
<span class="font-bold">Beautieslife.id</span> akan bantu kamu
belajar berbisnis dengan berbagai tools digital yang diharapkan
akan mendorong kemudahan dan kelancaran bisnis
<span class="italic">beauty</span>
kamu.
</p>
<div
class="tagline--list text-sm font-primary font-bold text-[#888888] sm:flex sm:justify-between"
>
<div class="list">
<div class="list-1 mt-5 flex justify-start items-center">
<img src="./assets/icon-1.png" alt="" srcset="" />
<p class="ml-3 text-[14px] md:text-[16px]">
Udah bukan jamannya gaptek
</p>
</div>
<div class="list-2 mt-5 flex justify-start items-center">
<img src="./assets/icon-1.png" alt="" srcset="" />
<p class="ml-3 text-[14px] md:text-[16px]">
Udah gak ada lagi bingung pake tools apaan
</p>
</div>
<div class="list-3 mt-5 flex justify-start items-center">
<img src="./assets/icon-1.png" alt="" srcset="" />
<p class="ml-3 text-[14px] md:text-[16px]">
Gak ada lagi istilah siapa yang bakan ngajarin aku
</p>
</div>
<div class="list-4 mt-5 flex justify-start items-center">
<img src="./assets/icon-1.png" alt="" srcset="" />
<p class="ml-3 text-[14px] md:text-[16px]">
Udah bukan musimnya jalan sendirian!!
</p>
</div>
</div>
<img
loading="lazy"
class="hidden md:block md:h-[122px] lg:h-[100px] md:translate-y-12 lg:translate-y-32 lg:translate-x-5"
src="./assets/img-mini3.png"
alt=""
srcset=""
/>
</div>
</div>
</div>
</div>
<div class="wrapper-section4 px-4 py-10 lg:px-0">
<div class="section4-parent md:px-12 lg:px-16">
<div class="parent__heading xl:mt-20">
<div
class="none md:block md:h-[12px] md:w-[100px] md:rounded-full md:bg-[#EE9591] md:mb-5 lg:w-[100px]"
></div>
<h3
class="font-primary font-bold text-heading text-[26px] md:text-[40px] xl:mr-[25rem]"
>
Pokonya udah pasti kita bimbing, dengan
<span class="text-brand">berbagai fasilitas</span>.
</h3>
</div>
<div
class="parent__content mt-16 flex flex-wrap justify-evenly h-[41rem] sm:h-[20rem] sm:min-h-[60vh] md:h-[60rem] md:min-h-[100vh] lg:h-[46rem] lg:min-h-[63vh] xl:h-[90vh]"
>
<div
class="content--mentoring w-[150px] h-[110px] md:w-[296px] lg:w-[274px] md:h-[200px] bg-[#FFFBFB] rounded-[16px] shadow-section2 flex justify-center items-center flex-col"
>
<img
loading="lazy"
class="md:h-28 lg:h-[5rem]"
src="./assets/icon-mentoring.png"
alt=""
srcset=""
/>
<h6
class="font-primary text-[14px] md:text-[20px] font-medium text-paragraph mt-3"
>
Intens Mentoring
</h6>
</div>
<div
class="content--rutin w-[150px] h-[110px] md:w-[296px] lg:w-[274px] md:h-[200px] bg-[#FFFBFB] rounded-[16px] shadow-section2 flex justify-center items-center flex-col"
>
<img
loading="lazy"
class="md:h-28 lg:h-[5rem]"
src="./assets/icon-kajian.png"
alt=""
srcset=""
/>
<h6
class="font-primary text-[14px] md:text-[20px] font-medium text-paragraph mt-3"
>
Kajian Rutin
</h6>
</div>
<div
class="content--bisnis w-[150px] h-[110px] md:w-[296px] lg:w-[274px] md:h-[200px] bg-[#FFFBFB] rounded-[16px] shadow-section2 flex justify-center items-center flex-col"
>
<img
loading="lazy"
class="md:h-28 lg:h-[5rem]"
src="./assets/icon-bisnis.png"
alt=""
srcset=""
/>
<h6
class="font-primary text-[14px] md:text-[20px] font-medium text-paragraph mt-3"
>
Kelas Bisnis
</h6>
</div>
<div
class="content--digital w-[150px] h-[110px] md:w-[296px] lg:w-[274px] md:h-[200px] bg-[#FFFBFB] rounded-[16px] shadow-section2 flex justify-center items-center flex-col"
>
<img
loading="lazy"
class="md:h-28 lg:h-[5rem]"
src="./assets/icon-digital-class.png"
alt=""
srcset=""
/>
<h6
class="font-primary text-[14px] md:text-[20px] font-medium text-paragraph mt-3"
>
Kelas Digital
</h6>
</div>
<div
class="content--rewards w-[150px] h-[110px] md:w-[296px] lg:w-[274px] md:h-[200px] bg-[#FFFBFB] rounded-[16px] shadow-section2 flex justify-center items-center flex-col"
>
<img
loading="lazy"
class="md:h-28 lg:h-[5rem]"
src="./assets/icon-rewards.png"
alt=""
srcset=""
/>
<h6
class="font-primary text-[14px] md:text-[20px] font-medium text-paragraph mt-3"
>
Rewards
</h6>
</div>
<div
class="content--profile w-[150px] h-[110px] md:w-[296px] lg:w-[274px] md:h-[200px] bg-[#FFFBFB] rounded-[16px] shadow-section2 flex justify-center items-center flex-col"
>
<img
loading="lazy"
class="md:h-28 lg:h-[5rem]"
src="./assets/icon-free-web.png"
alt=""
srcset=""
/>
<h6
class="font-primary text-[14px] md:text-[20px] font-medium text-paragraph mt-3"
>
Free Web Profile
</h6>
</div>
<div
class="content--skincare w-[150px] h-[110px] md:w-[296px] lg:w-[274px] md:h-[200px] bg-[#FFFBFB] rounded-[16px] shadow-section2 flex justify-center items-center flex-col"
>
<img
loading="lazy"
class="md:h-28 lg:h-[5rem]"
src="./assets/icon-ckincare-class.png"
alt=""
srcset=""
/>
<h6
class="font-primary text-[14px] md:text-[20px] font-medium text-paragraph mt-3"
>
Kelas Skin Care
</h6>
</div>
<div
class="content--knowledge w-[150px] h-[110px] md:w-[296px] lg:w-[274px] md:h-[200px] bg-[#FFFBFB] rounded-[16px] shadow-section2 flex justify-center items-center flex-col"
>
<img
loading="lazy"
class="md:h-28 lg:h-[5rem]"
src="./assets/icon-product-knowledge.png"
alt=""
srcset=""
/>
<h6
class="font-primary text-[14px] md:text-[20px] font-medium text-paragraph mt-3"
>
Product Knowledge
</h6>
</div>
</div>
</div>
</div>
<div class="wrapper-section5 px-4 py-10 md:px-16 lg:px-8 xl:px-16">
<div class="section5-parent">
<div
class="parent--heading mt-10 font-primary text-heading font-bold text-center"
>
<h3 class="text-[26px] lg:text-[40px]">
Meet our <span class="text-brand">mentor</span> and
<span class="text-brand">advisor</span>.
</h3>
<p class="text-paragraph text-[14px] lg:text-[16px] mt-7 mb-12">
Kita akan berlari ditemani para mentor dan advisor dari
Beautieslife.id. Akan banyak ilmu baru dan inspiratif.
</p>
</div>
<div
class="parent--mentor h-[97rem] min-h-[100vh] sm:h-[50rem] md:min-h-[66vh] lg:h-[auto] lg:min-h-[0] flex flex-wrap justify-around"
>
<div class="mentor-1">
<img
loading="lazy"
class="w-[225px]"
src="./assets/mentor-nanda.png"
alt=""
srcset=""
/>
<div class="mentor-1__name ml-1 mt-3">
<h4 class="font-primary font-bold text-[14px]">
Chantal Shelburne
</h4>
<p class="font-primary text-brand text-[10px]">
Founder Beautieslife.id
</p>
<p class="text-heading text-[12px] font-normal">Our Mentor</p>
</div>
</div>
<div class="mentor-2">
<img
loading="lazy"
class="w-[225px]"
src="./assets/mentor-rendy.png"
alt=""
srcset=""
/>
<div class="mentor-2__name ml-1 mt-3">
<h4 class="font-primary font-bold text-[14px]">
Kylee Danford
</h4>
<p class="font-primary text-brand text-[10px]">
Founder & CDO Syabany.com
</p>
<p class="text-heading text-[12px] font-normal">Our Mentor</p>
</div>
</div>
<div class="mentor-3">
<img
loading="lazy"
class="w-[225px]"
src="./assets/mentor-bunda-anni.png"
alt=""
srcset=""
/>
<div class="mentor-3__name ml-1 mt-3">
<h4 class="font-primary font-bold text-[14px]">
Lauralee Quintero
</h4>
<p class="font-primary text-brand text-[10px]">
Leader Nasional JAFRA Executive
</p>
<p class="text-heading text-[12px] font-normal">Our Advisor</p>
</div>
</div>
<div class="mentor-4">
<img
loading="lazy"
class="w-[225px]"
src="./assets/mentor-tehdiah-kanglukman.png"
alt=""
srcset=""
/>
<div class="mentor-4__name ml-1 mt-3">
<h4 class="font-primary font-bold text-[14px]">
Freida Varnes
</h4>
<p class="font-primary text-brand text-[10px]">
Founder Dakwahyu & Wadah Hikmah
</p>
<p class="text-heading text-[12px] font-normal">Our Advisor</p>
</div>
</div>
</div>
</div>
<div class="section6-parent mt-20 lg:mt-[22rem] xl:mt-80">
<div class="parent--heading font-primary xl:ml-[29rem] lg:ml-[15rem]">
<h4 class="font-bold text-brand text-[18px] mb-5">Testimonial</h4>
<h3
class="font-primary text-heading font-bold text-[26px] mb-7 md:text-[40px]"
>
Apa kata <span class="text-brand">mereka</span>?
</h3>
</div>
<div class="parent--testimonial">
<div class="parent--image swiper mySwiper hidden xl:block">
<div class="testimonial__image swiper-wrapper">
<div
class="testi-child swiper-slide flex justify-start items-center xl:justify-end"
>
<img
loading="lazy"
class="h-[110px] md:h-[180px] md:mr-5"
src="./assets/testi-dini.png"
alt=""
srcset=""
/>
<div
class="image--name font-primary ml-5 xl:basis-[26rem] xl:mr-8"
>
<p
class="text-paragraph font-bold text-[14px] mb-1 md:text-[30px] xl:text-[18px]"
>
Dinie Agustinie
</p>
<p
class="text-brand font-normal text-[12px] md:text-[15px] xl:text-[12px]"
>
Ibu Rumah Tangga
</p>
<p
class="font-primary text-paragraph text-[14px] mt-5 md:mt-3 md:text-[16px] hidden xl:block"
>
Arcu sed etiam proin natoque at lectus aliquam. Faucibus
ipsum porta eleifend facilisis cras in. Sed etiam proin
natoque at lectus aliquam. Faucibus ipsum porta eleifend
...
</p>
</div>
</div>
<div
class="testi-child swiper-slide flex justify-start items-center xl:justify-end"
>
<img
loading="lazy"
class="h-[110px] md:h-[180px] md:mr-5"
src="./assets/testi-dini2.png"
alt=""
srcset=""
/>
<div
class="image--name font-primary ml-5 xl:basis-[26rem] xl:mr-8"
>
<p
class="text-paragraph font-bold text-[14px] mb-1 md:text-[30px] xl:text-[18px]"
>
Dinie Agustinie
</p>
<p
class="text-brand font-normal text-[12px] md:text-[15px] xl:text-[12px]"
>
Ibu Rumah Tangga
</p>
<p
class="font-primary text-paragraph text-[14px] mt-5 md:mt-3 md:text-[16px] hidden xl:block"
>
Arcu sed etiam proin natoque at lectus aliquam. Faucibus
ipsum porta eleifend facilisis cras in. Sed etiam proin
natoque at lectus aliquam. Faucibus ipsum porta eleifend
...
</p>
</div>
</div>
<div
class="testi-child swiper-slide flex justify-start items-center xl:justify-end"
>
<img
loading="lazy"
class="h-[110px] md:h-[180px] md:mr-5"
src="./assets/testi-dini3.png"
alt=""
srcset=""
/>
<div
class="image--name font-primary ml-5 xl:basis-[26rem] xl:mr-8"
>
<p
class="text-paragraph font-bold text-[14px] mb-1 md:text-[30px] xl:text-[18px]"
>
Dinie Agustinie
</p>
<p
class="text-brand font-normal text-[12px] md:text-[15px] xl:text-[12px]"
>
Ibu Rumah Tangga
</p>
<p
class="font-primary text-paragraph text-[14px] mt-5 md:mt-3 md:text-[16px] hidden xl:block"
>
Arcu sed etiam proin natoque at lectus aliquam. Faucibus
ipsum porta eleifend facilisis cras in. Sed etiam proin
natoque at lectus aliquam. Faucibus ipsum porta eleifend
...
</p>
</div>
</div>
<div
class="testi-child swiper-slide flex justify-start items-center xl:justify-end"
>
<img
loading="lazy"
class="h-[110px] md:h-[180px] md:mr-5"
src="./assets/testi-dini4.png"
alt=""
srcset=""
/>
<div
class="image--name font-primary ml-5 xl:basis-[26rem] xl:mr-8"
>
<p
class="text-paragraph font-bold text-[14px] mb-1 md:text-[30px] xl:text-[18px]"
>
Dinie Agustinie
</p>
<p
class="text-brand font-normal text-[12px] md:text-[15px] xl:text-[12px]"
>
Ibu Rumah Tangga
</p>
<p
class="font-primary text-paragraph text-[14px] mt-5 md:mt-3 md:text-[16px] hidden xl:block"
>
Arcu sed etiam proin natoque at lectus aliquam. Faucibus
ipsum porta eleifend facilisis cras in. Sed etiam proin
natoque at lectus aliquam. Faucibus ipsum porta eleifend
...
</p>
</div>
</div>
</div>
</div>
<div class="btn-carousel hidden xl:flex xl:justify-end">
<button
class="flex mt-3 self-start hidden xl:flex xl:items-center xl:ml-0 swiper-button-next xl:mr-[16rem] xl:w-[100px]"
>
<p
class="font-primary font-medium text-paragraph md:text-[16px] mr-3"
>
next
</p>
<img src="./assets/icon-next.png" alt="" srcset="" />
</button>
<button
class="flex mt-3 self-start hidden xl:flex xl:items-center xl:ml-0 xl:mr-4 swiper-button-prev xl:w-[100px]"
>
<p
class="font-primary font-medium text-paragraph md:text-[16px] mr-3"
>
prev
</p>
<img src="./assets/icon-prev.png" alt="" srcset="" />
</button>
</div>
<div class="testimonial--message swiper mySwiper block xl:hidden">
<div class="message-container swiper-wrapper">
<div class="container-content swiper-slide">
<div
class="testi-child swiper-slide flex justify-start items-center xl:justify-end"
>
<img
loading="lazy"
class="h-[110px] md:h-[180px] md:mr-5"
src="./assets/testi-dini.png"
alt=""
srcset=""
/>
<div
class="image--name font-primary ml-5 xl:basis-[26rem] xl:mr-8"
>
<p
class="text-paragraph font-bold text-[14px] mb-1 md:text-[30px] xl:text-[18px]"
>
Dinie Agustinie
</p>
<p
class="text-brand font-normal text-[12px] md:text-[15px] xl:text-[12px]"
>
Ibu Rumah Tangga
</p>
</div>
</div>
<p
class="font-primary text-paragraph text-[14px] md:text-[18px] mt-5"
>
Arcu sed etiam proin natoque at lectus aliquam. Faucibus
ipsum porta eleifend facilisis cras in. Sed etiam proin
natoque at lectus aliquam. Faucibus ipsum porta eleifend ...
</p>
</div>
<div class="container-content swiper-slide">
<div
class="testi-child swiper-slide flex justify-start items-center xl:justify-end"
>
<img
loading="lazy"
class="h-[110px] md:h-[180px] md:mr-5"
src="./assets/testi-dini2.png"
alt=""
srcset=""
/>
<div
class="image--name font-primary ml-5 xl:basis-[26rem] xl:mr-8"
>
<p
class="text-paragraph font-bold text-[14px] mb-1 md:text-[30px] xl:text-[18px]"
>
Dinie Agustinie
</p>
<p
class="text-brand font-normal text-[12px] md:text-[15px] xl:text-[12px]"
>
Ibu Rumah Tangga
</p>
</div>
</div>
<p
class="font-primary text-paragraph text-[14px] md:text-[18px] mt-5"
>
Arcu sed etiam proin natoque at lectus aliquam. Faucibus
ipsum porta eleifend facilisis cras in. Sed etiam proin
natoque at lectus aliquam. Faucibus ipsum porta eleifend ...
</p>
</div>
<div class="container-content swiper-slide">
<div
class="testi-child swiper-slide flex justify-start items-center xl:justify-end"
>
<img
loading="lazy"
class="h-[110px] md:h-[180px] md:mr-5"
src="./assets/testi-dini3.png"
alt=""
srcset=""
/>
<div
class="image--name font-primary ml-5 xl:basis-[26rem] xl:mr-8"
>
<p
class="text-paragraph font-bold text-[14px] mb-1 md:text-[30px] xl:text-[18px]"
>
Dinie Agustinie
</p>
<p
class="text-brand font-normal text-[12px] md:text-[15px] xl:text-[12px]"
>
Ibu Rumah Tangga
</p>
</div>
</div>
<p
class="font-primary text-paragraph text-[14px] md:text-[18px] mt-5"
>
Arcu sed etiam proin natoque at lectus aliquam. Faucibus
ipsum porta eleifend facilisis cras in. Sed etiam proin
natoque at lectus aliquam. Faucibus ipsum porta eleifend ...
</p>
</div>
<div class="container-content swiper-slide">
<div
class="testi-child swiper-slide flex justify-start items-center xl:justify-end"
>
<img
loading="lazy"
class="h-[110px] md:h-[180px] md:mr-5"
src="./assets/testi-dini4.png"
alt=""
srcset=""
/>
<div
class="image--name font-primary ml-5 xl:basis-[26rem] xl:mr-8"
>
<p
class="text-paragraph font-bold text-[14px] mb-1 md:text-[30px] xl:text-[18px]"
>
Dinie Agustinie
</p>
<p
class="text-brand font-normal text-[12px] md:text-[15px] xl:text-[12px]"
>
Ibu Rumah Tangga
</p>
</div>
</div>
<p
class="font-primary text-paragraph text-[14px] md:text-[18px] mt-5"
>
Arcu sed etiam proin natoque at lectus aliquam. Faucibus
ipsum porta eleifend facilisis cras in. Sed etiam proin
natoque at lectus aliquam. Faucibus ipsum porta eleifend ...
</p>
</div>
</div>
</div>
<div class="btn-carousel flex xl:hidden mt-5 xl:mt-0">
<button
class="mt-3 self-end xl:flex xl:items-center lg:mr-auto lg:ml-[28rem] xl:mr-96 swiper-button-next xl:w-[100px]"
>
<p
class="font-primary font-medium text-paragraph md:text-[16px] mr-3"
>
next
</p>
<img src="./assets/icon-next.png" alt="" srcset="" />
</button>
<button
class="mt-3 self-end xl:flex xl:items-center xl:mr-96 swiper-button-prev xl:w-[100px]"
>
<p
class="font-primary font-medium text-paragraph md:text-[16px] mr-3"
>
prev
</p>
<img src="./assets/icon-prev.png" alt="" srcset="" />
</button>
</div>
</div>
</div>
</div>
</main>
<div class="wrapper-footer pt-10">
<div class="footer-parent xl:flex xl:items-center">
<div
class="col-parent1 bg-brand h-[35rem] sm:h-[43rem] sm:min-h-[100vh] md:h-[43rem] md:min-h-[100vh] xl:w-[40%] rounded-tr-[8rem] block lg:flex lg:justify-center lg:items-center xl:h-[33rem] xl:min-h-[80vh]"
>
<div
class="col-child1 lg:shrink px-4 md:px-16 xl:px-16 text-[14px] font-primary text-white pt-8 pr-14 sm:pr-8"
>
<img
loading="lazy"
class="h-[36px] sm:h-[50px] mb-5 xl:h-[36px]"
src="./assets/Beautieslife-white-logo.png"