-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1297 lines (1292 loc) · 138 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>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TVOYA - Beauty Institute</title>
<link href="/css/style.css" rel="stylesheet" type="text/css"/>
<link rel="icon" href="/favicon/favicon.ico" sizes="32x32">
<link rel="icon" href="/favicon/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/favicon/apple-touch-icon.png"><!-- 180×180 -->
<link rel="manifest" href="/favicon/site.webmanifest">
<script type="text/javascript">
!function(o, c) {
var n = c.documentElement
, t = " mod-";
n.className += t + "js",
("ontouchstart"in o || o.DocumentTouch && c instanceof DocumentTouch) && (n.className += t + "touch")
}(window, document);
</script>
</head>
<body>
<header class="header">
<div class="container">
<div class="header-content-wrp">
<a href="#" class="header-logo">
<img src="/images/logo_full_gold.svg" loading="lazy" width="210" height="62" alt="" class="header-logo-img"/>
</a>
<div class="header_menu">
<nav class="main_nav">
<ul role="list" class="nav_list">
<li><a href="#" class="nav_link active">Home</a></li>
<li><a href="#" class="nav_link">Services</a></li>
<li><a href="#" class="nav_link">Prices</a></li>
<li><a href="#" class="nav_link">Contact</a></li>
</ul>
</nav>
<div class="dropdown lang-switcher">
<button class="dropdown_toggle caret" type="button">EN</button>
<div class="dropdown_body lang_list">
<nav>
<a href="#" class="lang_item active">English</a>
<a href="#" class="lang_item">Deutsch</a>
<a href="#" class="lang_item">Русский</a>
</nav>
</div>
</div>
<div data-hover="false" data-delay="350" class="burger-menu dropdown">
<div class="menu-toggle dropdown_toggle">
<div class="burger_menu">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div class="dropdown_body full_menu">
<nav>
<ul role="list" class="full_menu_list" data-mode="single">
<li><a href="#" class="menu_link">Home</a><a href="#" class="menu_link_arrow"><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a></li>
<li class="parent_menu">
<a href="#" class="menu_link">Services <span class="icon icon-chevron"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="m1.875 6.194 8.125 7.5 8.125-7.5"></path></svg></span></a>
<a href="#" class="menu_link_arrow"><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a>
<ul role="list" class="submenu">
<li><a href="#" class="submenu_link">Facial treatments</a></li>
<li><a href="#" class="submenu_link">Facial peels</a></li>
<li><a href="#" class="submenu_link active">Dermadrop TDA System</a></li>
<li><a href="#" class="submenu_link">Endospheres Therapy</a></li>
<li><a href="#" class="submenu_link">Biologique Recherche</a></li>
<li><a href="#" class="submenu_link">ZO Obagi</a></li>
<li><a href="#" class="submenu_link">DMK</a></li>
</ul>
</li>
<li><a href="#" class="menu_link">Blog</a><a href="#" class="menu_link_arrow"><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a></li>
<li><a href="#" class="menu_link">News</a><a href="#" class="menu_link_arrow"><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a></li>
<li class="parent_menu">
<a href="#" class="menu_link">About Us <span class="icon icon-chevron"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="m1.875 6.194 8.125 7.5 8.125-7.5"></path></svg></span></a>
<a href="#" class="menu_link_arrow"><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a>
<ul role="list" class="submenu">
<li><a href="#" class="submenu_link">Our Team</a></li>
<li><a href="#" class="submenu_link">Founder</a></li>
</ul>
</li>
<li class="parent_menu">
<a href="#" class="menu_link">Documents <span class="icon icon-chevron"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="m1.875 6.194 8.125 7.5 8.125-7.5"></path></svg></span></a>
<a href="#" class="menu_link_arrow"><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a>
<ul role="list" class="submenu">
<li><a href="#" class="submenu_link">Impressum</a></li>
<li><a href="#" class="submenu_link">Certificates</a></li>
</ul>
</li>
<li><a href="#" class="menu_link">Prices</a><a href="#" class="menu_link_arrow"><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a></li>
<li><a href="#" class="menu_link">Portfolio</a><a href="#" class="menu_link_arrow"><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a></li>
<li><a href="#" class="menu_link">Contact</a><a href="#" class="menu_link_arrow"><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
const el = document.querySelector("header")
const observer = new IntersectionObserver(
([e]) => e.target.classList.toggle("is-pinned", e.intersectionRatio < 1),
{ threshold: [1] }
);
observer.observe(el);
</script>
</header>
<section class="hero">
<div class="container">
<div class="d-flex hero-content-wrp">
<div class="d-flex flex-column hero-text-wrp">
<h1 class="h1">Elevate Your Beauty with Aesthetic Cosmetology Solutions</h1>
<p class="subtitle">Addressing skin concerns head-on, TVOYA Beauty Salon offers personalized solutions that rejuvenate your skin and restore your confidence.</p>
<button type="button" class="btn btn-gold make-reservation">
Make a Reservation <span class="icon icon-calendar"></span>
</button>
</div>
<div class="hero-img-wrp">
<div class="bg-decor">
<div class="bg-spot"></div>
<svg class="hero-img-outline" width="647" height="691" viewBox="0 0 647 691" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M594.608 498.143C498.711 668.596 299.466 738.224 149.648 653.938C-0.169345 569.651 -44.1013 363.212 51.795 192.759C147.691 22.3054 346.937 -47.3226 496.754 36.964C646.572 121.251 690.504 327.689 594.608 498.143Z" stroke="#E3D1BA" stroke-width="1.5" class="hero-img-path" />
</svg>
<div class="star-decor style-outline">
<svg xmlns="http://www.w3.org/2000/svg" width="32" viewBox="0 0 60 60" fill="none">
<path d="M0.690308 29.5719C15.1612 29.5719 30.2357 44.6464 30.2357 59.1173C30.2357 44.6464 45.3102 29.5719 59.7811 29.5719C45.3102 29.5719 30.2357 14.4974 30.2357 0.0264893C30.2357 14.4974 15.1612 29.5719 0.690308 29.5719Z" stroke="currentColor"></path>
</svg>
</div>
<div class="star-decor item-2">
<svg xmlns="http://www.w3.org/2000/svg" width="32" viewBox="0 0 42 41" fill="none">
<path d="M0.781616 20.4794C11.9621 20.4794 21.0257 29.5429 21.0257 40.7234C21.0257 29.5429 30.0892 20.4794 41.2697 20.4794C30.0892 20.4794 21.0257 11.4158 21.0257 0.235306C21.0257 11.4158 11.9621 20.4794 0.781616 20.4794Z" fill="currentColor"></path>
</svg>
</div>
<div class="star-decor item-3">
<svg xmlns="http://www.w3.org/2000/svg" width="32" viewBox="0 0 42 41" fill="none">
<path d="M0.781616 20.4794C11.9621 20.4794 21.0257 29.5429 21.0257 40.7234C21.0257 29.5429 30.0892 20.4794 41.2697 20.4794C30.0892 20.4794 21.0257 11.4158 21.0257 0.235306C21.0257 11.4158 11.9621 20.4794 0.781616 20.4794Z" fill="currentColor"></path>
</svg>
</div>
<div class="star-decor item-5">
<svg xmlns="http://www.w3.org/2000/svg" width="32" viewBox="0 0 42 41" fill="none">
<path d="M0.781616 20.4794C11.9621 20.4794 21.0257 29.5429 21.0257 40.7234C21.0257 29.5429 30.0892 20.4794 41.2697 20.4794C30.0892 20.4794 21.0257 11.4158 21.0257 0.235306C21.0257 11.4158 11.9621 20.4794 0.781616 20.4794Z" fill="currentColor"></path>
</svg>
</div>
<div class="star-decor style-outline item-4">
<svg xmlns="http://www.w3.org/2000/svg" width="32" viewBox="0 0 60 60" fill="none">
<path d="M0.690308 29.5719C15.1612 29.5719 30.2357 44.6464 30.2357 59.1173C30.2357 44.6464 45.3102 29.5719 59.7811 29.5719C45.3102 29.5719 30.2357 14.4974 30.2357 0.0264893C30.2357 14.4974 15.1612 29.5719 0.690308 29.5719Z" stroke="currentColor"></path>
</svg>
</div>
</div>
<img src="/images/hero_img.webp" srcset="/images/[email protected] 2x" width="100%" alt="TVOYA Beauty Salon" style="clip-path:url(#mask1)" loading="lazy" />
<svg xmlns="http://www.w3.org/2000/svg" width="0px" height="0px" viewBox="0 0 660 645" fill="none" class="clip-mask">
<defs>
<clipPath id="mask1" clipPathUnits="objectBoundingBox">
<path d="M0.9137454545454545,0.8168728682170543c-0.1581530303030303,0.22617364341085272,-0.4688833333333334,0.22363410852713178,-0.7149212121212122,0.09656899224806201c-0.24603787878787878,-0.12706511627906975,-0.25349696969696967,-0.4345596899224806,-0.0787,-0.6310868217054263c0.17479545454545453,-0.19652713178294576,0.5144742424242424,-0.357075968992248,0.7228060606060607,-0.24588217054263564c0.20833333333333334,0.1111937984496124,0.1851378787878788,0.6169100775193798,0.07081515151515151,0.7804z" fill="#E7E7E7"></path>
</clipPath>
</defs>
</svg>
</div>
</div>
</div>
<div class="ticker-container">
<div class="phrase-container">
<div class="ticker-item">
<p>You <span class="highlight">deserve</span> the royal treatment</p>
<span class="star-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="42" viewBox="0 0 60 61" fill="none">
<path d="M29.373 1.05701C29.4611 0.314329 30.5389 0.314329 30.627 1.05701L31.925 11.9965C32.9564 20.6896 39.8104 27.5436 48.5035 28.575L59.443 29.873C60.1857 29.9611 60.1857 31.0389 59.443 31.127L48.5035 32.425C39.8104 33.4564 32.9564 40.3104 31.925 49.0035L30.627 59.943C30.5389 60.6857 29.4611 60.6857 29.373 59.943L28.075 49.0035C27.0436 40.3104 20.1896 33.4564 11.4965 32.425L0.557014 31.127C-0.185671 31.0389 -0.185671 29.9611 0.557013 29.873L11.4965 28.575C20.1896 27.5436 27.0436 20.6896 28.075 11.9965L29.373 1.05701Z" fill="currentColor"></path>
</svg>
</span>
</div>
<div class="ticker-item">
<p>You <span class="highlight">deserve</span> the royal treatment</p>
<span class="star-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="42" viewBox="0 0 60 61" fill="none">
<path d="M29.373 1.05701C29.4611 0.314329 30.5389 0.314329 30.627 1.05701L31.925 11.9965C32.9564 20.6896 39.8104 27.5436 48.5035 28.575L59.443 29.873C60.1857 29.9611 60.1857 31.0389 59.443 31.127L48.5035 32.425C39.8104 33.4564 32.9564 40.3104 31.925 49.0035L30.627 59.943C30.5389 60.6857 29.4611 60.6857 29.373 59.943L28.075 49.0035C27.0436 40.3104 20.1896 33.4564 11.4965 32.425L0.557014 31.127C-0.185671 31.0389 -0.185671 29.9611 0.557013 29.873L11.4965 28.575C20.1896 27.5436 27.0436 20.6896 28.075 11.9965L29.373 1.05701Z" fill="currentColor"></path>
</svg>
</span>
</div>
<div class="ticker-item">
<p>You <span class="highlight">deserve</span> the royal treatment</p>
<span class="star-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="42" viewBox="0 0 60 61" fill="none">
<path d="M29.373 1.05701C29.4611 0.314329 30.5389 0.314329 30.627 1.05701L31.925 11.9965C32.9564 20.6896 39.8104 27.5436 48.5035 28.575L59.443 29.873C60.1857 29.9611 60.1857 31.0389 59.443 31.127L48.5035 32.425C39.8104 33.4564 32.9564 40.3104 31.925 49.0035L30.627 59.943C30.5389 60.6857 29.4611 60.6857 29.373 59.943L28.075 49.0035C27.0436 40.3104 20.1896 33.4564 11.4965 32.425L0.557014 31.127C-0.185671 31.0389 -0.185671 29.9611 0.557013 29.873L11.4965 28.575C20.1896 27.5436 27.0436 20.6896 28.075 11.9965L29.373 1.05701Z" fill="currentColor"></path>
</svg>
</span>
</div>
</div>
</div>
</section>
<section class="about-us-module">
<div class="container">
<div class="section-header">
<div class="section-title-wrp">
<div class="section-title">About Us</div>
</div>
</div>
<div class="d-flex gap-60">
<div class="img-slider col-5">
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide" data-caption="State-of-the-art Equipment">
<img src="/images/[email protected]" srcset="images/[email protected] 2x" width="100%" alt="State-of-the-art Equipment">
</div>
<div class="swiper-slide" data-caption="Technological Innovations">
<img src="/images/[email protected]" srcset="/images/[email protected] 2x" width="100%" alt="Technological Innovations">
</div>
<div class="swiper-slide" data-caption="Training, Congresses, Seminars">
<img src="/images/about_img_3_o.jpg" srcset="/images/about_img_3_o.jpg 2x" width="100%" alt="Training, Congresses, Seminars">
</div>
<div class="swiper-slide" data-caption="Professionals in the Team">
<img src="/images/[email protected]" srcset="/images/[email protected] 2x" width="100%" alt="Professionals in the Team">
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" width="0px" height="0px" viewBox="0 0 331 311" fill="none" class="clip-mask">
<defs>
<clipPath id="mask2" clipPathUnits="objectBoundingBox">
<path d="M0.9271903323262839,0.30775691318327975c0.14207552870090634,0.2538681672025724,0.06612688821752266,0.5457556270096463,-0.16964048338368581,0.6519485530546624c-0.23576737160120848,0.10618971061093248,-0.5420694864048339,-0.01352411575562701,-0.6841480362537764,-0.2673922829581994c-0.14207552870090634,-0.2538681672025724,-0.06612688821752266,-0.5457556270096463,0.16964048338368581,-0.6519485530546624c0.23576737160120848,-0.10618971061093248,0.5420694864048339,0.01352411575562701,0.6841480362537764,0.2673922829581994z" fill="white"></path>
</clipPath>
</defs>
</svg>
<div class="slider-control d-flex">
<div class="slider-buttons">
<button role="button" class="slider-btn prev">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-width="2" d="M18.333 10H1.667m16.666 0-6.908-7.5m6.908 7.5-6.908 7.5"/></svg>
</button>
<button role="button" class="slider-btn next">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-width="2" d="M18.333 10H1.667m16.666 0-6.908-7.5m6.908 7.5-6.908 7.5"/></svg>
</button>
</div>
<div class="slide-title">
<span>State-of-the-art Equipment</span>
</div>
</div>
</div>
<div class="d-flex flex-column gap-20">
<h2 class="h2">Say goodbye to skin worries and hello to radiant beauty</h2>
<div class="text-block">
<p>At TVOYA Beauty Salon, we address skin concerns head-on with personalized solutions, rejuvenating your skin and restoring confidence.</p>
<p>People trust our clinic because of Valentina Tuz's exceptional expertise and dedication to delivering remarkable results. Our clients find comfort and confidence in the hands of a renowned expert, making us their top choice for transformative beauty solutions.</p>
</div>
<a href="#" class="btn btn-md btn-beige-1">
<span class="btn-text">learn more about us</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span>
</a>
<div class="benefits_toggle">
<div class="toggle_item active" data-index="0">
<div class="slide-thumb" style="background-image: url('/images/[email protected]');"></div>
<div class="benefit_text">State-of-the-art Equipment</div>
</div>
<div class="toggle_item" data-index="1">
<div class="slide-thumb" style="background-image: url('/images/[email protected]');"></div>
<div class="benefit_text">Technological Innovations</div>
</div>
<div class="toggle_item" data-index="2">
<div class="slide-thumb" style="background-image: url('/images/about_img_3_o.jpg');"></div>
<div class="benefit_text">Training, Congresses, Seminars</div>
</div>
<div class="toggle_item" data-index="3">
<div class="slide-thumb" style="background-image: url('/images/[email protected]');"></div>
<div class="benefit_text">Professionals in the Team</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="services-module">
<div class="container">
<div class="section-header">
<div class="section-title-wrp">
<div class="section-title">Services</div>
</div>
</div>
<div class="d-flex gap-60 align-items-center">
<div class="col">
<div class="accordion" data-mode="always-open">
<div class="accordion-item show" data-index="0">
<div class="accordion-toggle">
<h3>Facial treatments</h3>
<span class="icon icon-chevron"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1.875 6.194 8.125 7.5 8.125-7.5"/></svg></span>
</div>
<div class="accordion-collapse collapse show">
<div class="accordion-body">
<div class="service-img-single">
<img src="/images/services/[email protected]" srcset="images/services/[email protected] 2x" width="100%" alt="Facial treatments" loading="lazy">
<div class="service-price-single"><span>from 150 €</span></div>
</div>
<p>Experience the ultimate in skincare with our personalized facial treatments. Each session is tailored to your skin type and concerns, ensuring a glowing and healthy complexion.</p>
<a href="#" class="btn btn-sm btn-beige-2"><span class="btn-text">read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"/></svg></span></a>
</div>
</div>
</div>
<div class="accordion-item" data-index="1">
<div class="accordion-toggle">
<h3>Facial peels</h3>
<span class="icon icon-chevron"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1.875 6.194 8.125 7.5 8.125-7.5"/></svg></span>
</div>
<div class="accordion-collapse collapse">
<div class="accordion-body">
<div class="service-img-single">
<img src="/images/services/[email protected]" srcset="images/services/[email protected] 2x" width="100%" alt="Facial peels" loading="lazy">
<div class="service-price-single"><span>from 170 €</span></div>
</div>
<p>Revitalize your skin with our invigorating facial scrubs. Gentle exfoliation removes dead cells, revealing a radiant and refreshed complexion.</p>
<a href="#" class="btn btn-sm btn-beige-2"><span class="btn-text">read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"/></svg></span></a>
</div>
</div>
</div>
<div class="accordion-item" data-index="2">
<div class="accordion-toggle">
<h3>Dermadrop TDA System</h3>
<span class="icon icon-chevron"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1.875 6.194 8.125 7.5 8.125-7.5"/></svg></span>
</div>
<div class="accordion-collapse collapse">
<div class="accordion-body">
<div class="service-img-single">
<img src="/images/services/[email protected]" srcset="images/services/[email protected] 2x" width="100%" alt="Dermadrop TDA System" loading="lazy">
<div class="service-price-single"><span>from 180 €</span></div>
</div>
<p>Rejuvenate your skin with the Dermadrop TDA System. This advanced non-invasive treatment delivers active ingredients deep into the skin, providing intense hydration and improving overall skin texture.</p>
<a href="#" class="btn btn-sm btn-beige-2"><span class="btn-text">read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"/></svg></span></a>
</div>
</div>
</div>
<div class="accordion-item" data-index="3">
<div class="accordion-toggle">
<h3>Endospheres Therapy</h3>
<span class="icon icon-chevron"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1.875 6.194 8.125 7.5 8.125-7.5"/></svg></span>
</div>
<div class="accordion-collapse collapse">
<div class="accordion-body">
<div class="service-img-single">
<img src="/images/services/[email protected]" srcset="images/services/[email protected] 2x" width="100%" alt="Endospheres Therapy" loading="lazy">
<div class="service-price-single"><span>from 230 €</span></div>
</div>
<p>Achieve smoother and firmer skin with Endospheres Therapy. This innovative treatment uses microvibration to enhance circulation, reduce cellulite, and promote a more toned appearance.</p>
<a href="#" class="btn btn-sm btn-beige-2"><span class="btn-text">read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"/></svg></span></a>
</div>
</div>
</div>
<div class="accordion-item" data-index="4">
<div class="accordion-toggle">
<h3>Biologique Recherche</h3>
<span class="icon icon-chevron"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1.875 6.194 8.125 7.5 8.125-7.5"/></svg></span>
</div>
<div class="accordion-collapse collapse">
<div class="accordion-body">
<div class="service-img-single">
<img src="/images/services/[email protected]" srcset="images/services/[email protected] 2x" width="100%" alt="Biologique Recherche" loading="lazy">
<div class="service-price-single"><span>from 160 €</span></div>
</div>
<p>Transform your skin with Biologique Recherche treatments. Using high-quality, concentrated formulas, these treatments target specific skin concerns for visible and lasting results.</p>
<a href="#" class="btn btn-sm btn-beige-2"><span class="btn-text">read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"/></svg></span></a>
</div>
</div>
</div>
<div class="accordion-item" data-index="5">
<div class="accordion-toggle">
<h3>ZO Obagi</h3>
<span class="icon icon-chevron"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1.875 6.194 8.125 7.5 8.125-7.5"/></svg></span>
</div>
<div class="accordion-collapse collapse">
<div class="accordion-body">
<div class="service-img-single">
<img src="/images/services/[email protected]" srcset="images/services/[email protected] 2x" width="100%" alt="ZO Obagi" loading="lazy">
<div class="service-price-single"><span>from 250 €</span></div>
</div>
<p>Discover the power of ZO Obagi skincare. Our treatments incorporate these medical-grade products to address various skin issues, from acne to aging, ensuring a clearer and more youthful complexion.</p>
<a href="#" class="btn btn-sm btn-beige-2"><span class="btn-text">read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"/></svg></span></a>
</div>
</div>
</div>
<div class="accordion-item" data-index="6">
<div class="accordion-toggle">
<h3>DMK</h3>
<span class="icon icon-chevron"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1.875 6.194 8.125 7.5 8.125-7.5"/></svg></span>
</div>
<div class="accordion-collapse collapse">
<div class="accordion-body">
<div class="service-img-single">
<img src="/images/services/[email protected]" srcset="images/services/[email protected] 2x" width="100%" alt="DMK" loading="lazy">
<div class="service-price-single"><span>from 325 €</span></div>
</div>
<p>Revitalize your skin with DMK enzyme therapy. This unique treatment works with your body’s chemistry to rebuild and protect the skin, resulting in a healthier and more resilient complexion.</p>
<a href="#" class="btn btn-sm btn-beige-2"><span class="btn-text">read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"/></svg></span></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-5">
<div class="img-clip" id="service-img-wrp">
<div class="bg-decor">
<div class="bg-spot service-section"></div>
<img src="/images/ripple_decor.svg" loading="lazy" class="ripple-bg"/>
</div>
<div class="service-img">
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide" data-price="from 150 €">
<img src="/images/services/[email protected]" srcset="images/services/[email protected] 2x" width="100%" alt="Facial treatments" loading="lazy">
</div>
<div class="swiper-slide" data-price="from 170 €">
<img src="/images/services/[email protected]" srcset="images/services/[email protected] 2x" width="100%" alt="Facial peels" loading="lazy">
</div>
<div class="swiper-slide" data-price="from 180 €">
<img src="/images/services/[email protected]" srcset="images/services/[email protected] 2x" width="100%" alt="Dermadrop TDA System" loading="lazy">
</div>
<div class="swiper-slide" data-price="from 230 €">
<img src="/images/services/[email protected]" srcset="images/services/[email protected] 2x" width="100%" alt="Endospheres Therapy" loading="lazy">
</div>
<div class="swiper-slide" data-price="from 160 €">
<img src="/images/services/[email protected]" srcset="images/services/[email protected] 2x" width="100%" alt="Biologique Recherche" loading="lazy">
</div>
<div class="swiper-slide" data-price="from 250 €">
<img src="/images/services/[email protected]" srcset="images/services/[email protected] 2x" width="100%" alt="ZO Obagi" loading="lazy">
</div>
<div class="swiper-slide" data-price="from 325 €">
<img src="/images/services/[email protected]" srcset="images/services/[email protected] 2x" width="100%" alt="DMK" loading="lazy">
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" width="0px" height="0px" viewBox="0 0 543 441" fill="none" class="clip-mask">
<defs>
<clipPath id="mask3" clipPathUnits="objectBoundingBox">
<path d="M0.5746924493554327,0.006199319727891157c0.2187826887661142,0.039596371882086166,0.40216390423572745,0.21616780045351475,0.42361325966850827,0.4464126984126984c0.020349907918968693,0.218453514739229,-0.14550644567219154,0.38991609977324265,-0.33722836095764275,0.4809138321995465c-0.18903130755064457,0.08972108843537414,-0.419841620626151,0.10405668934240364,-0.5612430939226519,-0.054464852607709745c-0.14256537753222837,-0.15982539682539684,-0.11850092081031308,-0.402,-0.01523756906077348,-0.5918140589569161c0.10165193370165747,-0.18685260770975057,0.28696869244935547,-0.3178095238095238,0.49009576427255985,-0.28104761904761905z" fill="white"></path>
</clipPath>
</defs>
</svg>
</div>
<div class="service-price"><span>from 170 €</span></div>
</div>
</div>
</div>
</div>
</section>
<section class="equipment-module swiper-carousel">
<div class="container">
<div class="section-header">
<div class="section-title-wrp">
<div class="section-title">Our Equipment</div>
</div>
<div class="navigation-wrp">
<div class="sw-pagination"></div>
<div class="arrows-control">
<button role="button" class="btn swiper-arrow sw-button-prev"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-width="2" d="M18.333 10H1.667m16.666 0-6.908-7.5m6.908 7.5-6.908 7.5"/></svg></button>
<button role="button" class="btn swiper-arrow sw-button-next"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-width="2" d="M18.333 10H1.667m16.666 0-6.908-7.5m6.908 7.5-6.908 7.5"/></svg></button>
</div>
</div>
</div>
<div class="d-flex gap-50 align-items-center">
<div class="headline-wrp col-4">
<div class="headline-text">
<h2 class="h2 mb-2">New Generation Machines</h2>
<p>The best machines for sustainable results</p>
</div>
<a href="#" class="btn btn-md btn-beige-1 mt-4">
<span class="btn-text">explore</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"/></svg></span>
</a>
</div>
<div class="swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="/images/equipment-1-o.jpg" loading="lazy" class="img"/>
<div class="slide-content">
<h3 class="h3">AlviDerm Vacuum Hydropeeling</h3>
<p class="text">Meet our AlviDerm Vacuum Hydropeeling device – your ultimate skincare solution. Crafted by top European engineers, it offers sought-after techniques for intensive care, ensuring radiant, healthy skin.</p>
</div>
</div>
<div class="swiper-slide">
<img src="/images/equipment-4-o.jpg" loading="lazy" class="img"/>
<div class="slide-content">
<h3 class="h3">Remodeling Face Machine</h3>
<p class="text">Experience our Remodeling Face Machine: painlessly sculpting facial muscles for a contoured chin, enhanced cheekbones, and wider eyes. Utilizes four electric currents and radio-frequency waves for optimal results.</p>
</div>
</div>
<div class="swiper-slide">
<img src="/images/equipment-3-o.jpg" loading="lazy" class="img"/>
<div class="slide-content">
<h3 class="h3">Innovative Technology</h3>
<p class="text">Innovative technology delivering hyaluronic acid, vitamins, microelements, and amino acids deep into the skin layers without injections.</p>
</div>
</div>
<div class="swiper-slide">
<img src="/images/equipment-4-o.jpg" loading="lazy" class="img"/>
<div class="slide-content">
<h3 class="h3">Remodeling Face Machine</h3>
<p class="text">Experience our Remodeling Face Machine: painlessly sculpting facial muscles for a contoured chin, enhanced cheekbones, and wider eyes. Utilizes four electric currents and radio-frequency waves for optimal results.</p>
</div>
</div>
<div class="swiper-slide">
<img src="/images/equipment-1-o.jpg" loading="lazy" class="img"/>
<div class="slide-content">
<h3 class="h3">AlviDerm Vacuum Hydropeeling</h3>
<p class="text">Meet our AlviDerm Vacuum Hydropeeling device – your ultimate skincare solution. Crafted by top European engineers, it offers sought-after techniques for intensive care, ensuring radiant, healthy skin.</p>
</div>
</div>
<div class="swiper-slide">
<img src="/images/equipment-4-o.jpg" loading="lazy" class="img"/>
<div class="slide-content">
<h3 class="h3">Remodeling Face Machine</h3>
<p class="text">Experience our Remodeling Face Machine: painlessly sculpting facial muscles for a contoured chin, enhanced cheekbones, and wider eyes. Utilizes four electric currents and radio-frequency waves for optimal results.</p>
</div>
</div>
<div class="swiper-slide">
<img src="/images/equipment-3-o.jpg" loading="lazy" class="img"/>
<div class="slide-content">
<h3 class="h3">Innovative Technology</h3>
<p class="text">Innovative technology delivering hyaluronic acid, vitamins, microelements, and amino acids deep into the skin layers without injections.</p>
</div>
</div>
<div class="swiper-slide">
<img src="/images/equipment-4-o.jpg" loading="lazy" class="img"/>
<div class="slide-content">
<h3 class="h3">Remodeling Face Machine</h3>
<p class="text">Experience our Remodeling Face Machine: painlessly sculpting facial muscles for a contoured chin, enhanced cheekbones, and wider eyes. Utilizes four electric currents and radio-frequency waves for optimal results.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="special-offer">
<div class="container">
<div class="d-flex align-items-center">
<div class="col">
<h2 class="h2">Discounted Procedure Package</h2>
<a href="#" class="btn btn-md btn-white mt-4">
<span class="btn-text">explore</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"/></svg></span>
</a>
</div>
<div class="col img-clip">
<img src="/images/[email protected]" srcset="/images/[email protected] 2x" width="100%" alt="" style="clip-path:url(#mask4)" loading="lazy"/>
<svg class="svg" class="clip-mask" width="0px" height="0px" viewBox="0 0 324 330">
<clipPath id="mask4" clipPathUnits="objectBoundingBox"><path d="M0.18,1 c0.05,0,0.1,-0.038,0.143,-0.103 C0.355,0.962,0.398,1,0.449,1 c0.054,0,0.107,-0.043,0.151,-0.116 c0.032,0.072,0.077,0.116,0.131,0.116 c0.122,0,0.24,-0.224,0.265,-0.5 c0.025,-0.276,-0.054,-0.5,-0.176,-0.5 c-0.054,0,-0.107,0.043,-0.151,0.116 C0.636,0.043,0.591,0,0.538,0 c-0.05,0,-0.1,0.038,-0.143,0.103 C0.363,0.038,0.32,0,0.269,0 C0.148,0,0.029,0.224,0.004,0.5 c-0.025,0.276,0.054,0.5,0.176,0.5"></path></clipPath>
</svg>
</div>
<div class="col text-right">
<h3>Indulge in 8 luxurious treatments and enjoy a dazzling 20% off!</h3>
<button type="button" class="btn btn-gold make-reservation mt-4">Make a Reservation <span class="icon icon-calendar"></span></button>
</div>
</div>
</div>
</section>
<section class="reviews-module swiper-carousel">
<div class="container">
<div class="section-header">
<div class="section-title">
<div>Testimonials</div>
</div>
<div class="navigation-wrp">
<div class="sw-pagination"></div>
<div class="arrows-control">
<button role="button" class="btn swiper-arrow sw-button-prev"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-width="2" d="M18.333 10H1.667m16.666 0-6.908-7.5m6.908 7.5-6.908 7.5"/></svg></button>
<button role="button" class="btn swiper-arrow sw-button-next"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-width="2" d="M18.333 10H1.667m16.666 0-6.908-7.5m6.908 7.5-6.908 7.5"/></svg></button>
</div>
</div>
</div>
<div class="d-flex gap-50 align-items-center">
<div class="headline-wrp col-4 text-right">
<div class="d-flex flex-column headline-text text-right">
<h2 class="h2 text-right">What Our Customers Say</h2>
</div>
<div class="google-reviews-widget">
<img src="/icons/google.svg" loading="lazy" alt="Google logo" class="google-logo"/>
<div class="average-rating-wrp">
<div class="average-rating">
<div class="score">5.0</div>
<wrapper class="divider"></wrapper>
<div class="g_star_rating"><span></span></div>
</div>
<div class="total-review-count">based on <a target="_blank" href="https://www.google.com/search?q=tvoya+sch%C3%B6nheitsinstitut&rlz=1C1CHZO_ruUA1046UA1046&oq=tvoya+sch%C3%B6nheitsinstitut&gs_lcrp=EgZjaHJvbWUqBggAEEUYOzIGCAAQRRg7MggIARAAGBYYHjIKCAIQABiABBiiBDIKCAMQABiABBiiBDIKCAQQABiABBiiBDIKCAUQABiABBiiBDIKCAYQABiABBiiBNIBCDIyNzlqMGoxqAIAsAIA&sourceid=chrome&ie=UTF-8#lrd=0x479e75789050d535:0xa791ce72f19386f5,1,,,," hover-tooltip="Check out our Google reviews" tooltip-position="top" tooltip-wrap="wrap">50 reviews</a></div>
</div>
</div>
</div>
<div class="swiper">
<div class="bg-decor">
<div class="bg-spot blue"></div>
<div class="bg-spot yellow"></div>
</div>
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="review_item show_translated">
<div class="r_body">
<div class="r_head">
<div class="g_star_rating four_star"><span></span></div>
<div class="r_date">2 years ago</div>
</div>
<div class="r_text">
<span class="translated_trunc">I would like to say thank you very much to the wonderful beautician Valentina! She is a wonderful specialist, very tactful and delicate during the procedure. It is very comfortable to communicate with … </span>
<span class="original_trunc">Хочу сказать спасибо большое прекрасному косметологу Валентине! Замечательный специалист, при проведении процедуры очень тактичная и деликатная. В общении очень с ней комфортно … </span>
<span class="translated full_text">I would like to say thank you very much to the wonderful beautician Valentina! She is a wonderful specialist, very tactful and delicate during the procedure. I would like to express my gratitude to her professionalism, light hands and the magic that she did to my face. As one famous cartoon said: *I am yours forever*<br>I recommend to all girls who care about the beauty of their appearance.💙💙💙</span>
<span class="original full_text">Хочу сказать спасибо большое прекрасному косметологу Валентине! Замечательный специалист, при проведении процедуры очень тактичная и деликатная. В общении очень с ней комфортно, ответит на все вопросы.Хочу выразить огромную благодарность её профессионализму, лёгким рукам и тому волшебству, что она сотворила с моим лицом. Как говорилось в одном известном мультфильме: * Я ваша на веки*<br>Рекомендую всем девочкам кто заботится о красоте своей внешности.💙💙💙</span>
<span class="read-more">read more</span></div>
</div>
<div class="r_meta">
<div class="r_author">
<img src="/images/reviews/author_1.png" loading="lazy" alt="Elena Romaniutina" class="r_author_img"/>
<div>
<div class="r_author_name">Elena Romaniutina</div>
<div class="r_source">Review from Google</div>
</div>
</div>
<div class="translate_review" hover-tooltip="Show original text" tooltip-position="top-right" tooltip-wrap="nowrap">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path fill="#CEB588" d="m9.878 18.088 3.706-9.6h1.71l3.706 9.6h-1.71l-.876-2.44h-3.95l-.876 2.44h-1.71Zm-6.435-2.4-1.14-1.12 4.113-4.04c-.475-.466-.906-1-1.293-1.6-.387-.6-.743-1.28-1.069-2.04h1.71c.272.52.544.973.815 1.36.272.387.597.773.978 1.16.448-.44.913-1.057 1.395-1.85.482-.794.845-1.55 1.089-2.27H1v-1.6h5.701v-1.6h1.63v1.6h5.7v1.6H11.67c-.285.96-.713 1.947-1.283 2.96s-1.134 1.787-1.69 2.32l1.955 1.96-.611 1.64-2.484-2.5-4.114 4.02Zm9.53-1.44h2.932l-1.466-4.08-1.466 4.08Z"/></svg>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="review_item show_translated">
<div class="r_body">
<div class="r_head">
<div class="g_star_rating three_star"><span></span></div>
<div class="r_date">3 months ago</div>
</div>
<div class="r_text">
<span class="translated_trunc">If I could give it 10 stars I would be happy to do so! Schönheitsinstitut "Tvoya" is top notch. Beautiful and stylish interior, from the doorstep you feel like a special client, I have not met such an attitude … </span>
<span class="original_trunc">Если бы можно было поставить 10 звёзд-я бы с радостью это сделала! Schönheitsinstitut "Tvoya" на высоте. Красивый и стильный интерьер, с порога чувствуешь себя особым клиентом … </span>
<span class="translated full_text">If I could give it 10 stars I would be happy to do so! Schönheitsinstitut "Tvoya" is top notch. Beautiful and stylish interior, from the doorstep you feel like a special client, I have not met such an attitude anywhere else. Coming there you get both aesthetic pleasure and quality services. Nice staff and, most importantly, incredible doctors! I come from Austria, I have been there more than once and I will be back again and again! I have been to Valentina for a facial cleanse, peel and maintenance treatments. Valentina was very informative about further care and how to achieve the desired results. Another plus is that after the procedure in the salon you can immediately buy cosmetics. That significantly helps to prolong and preserve the result after the salon procedure. Valentina envelops you with gentle care every time. You want to come back here and spend as much time as possible! I look forward to the next term!</span>
<span class="original full_text">Если бы можно было поставить 10 звёзд-я бы с радостью это сделала! Schönheitsinstitut "Tvoya" на высоте. Красивый и стильный интерьер, с порога чувствуешь себя особым клиентом, такого отношения я не встречала нигде. Приходя туда получаешь и эстетическое удовольствие и качественные услуги. Приятный коллектив и, что самое главное, невероятные врачи! Я приезжаю из Австрии, была не один раз и вернусь ещё и ещё!! Я была у Валентины, делала чистку лица, пилинг и уходовые процедуры. Валентина очень информативно рассказала про дальнейший уход и как добиться желаемого результата. Еще один плюс заключается в том, что после процедуры в салоне можно сразу же приобрести косметику. Что значительно помогает продлить и сохранить результат после салонной процедуры. Валентина окутывает бережной заботой каждый раз. Сюда хочется возращаться и проводить как можно больше времени! Я с нетерпением жду следующего термина!</span>
<span class="read-more">read more</span>
</div>
</div>
<div class="r_meta">
<div class="r_author">
<img src="/images/reviews/no_avatar.png" loading="lazy" alt="Алена Кишова" class="r_author_img"/>
<div>
<div class="r_author_name">Алена Кишова</div>
<div class="r_source">Review from Google</div>
</div>
</div>
<div class="translate_review" hover-tooltip="Show original text" tooltip-position="top-right" tooltip-wrap="nowrap">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path fill="#CEB588" d="m9.878 18.088 3.706-9.6h1.71l3.706 9.6h-1.71l-.876-2.44h-3.95l-.876 2.44h-1.71Zm-6.435-2.4-1.14-1.12 4.113-4.04c-.475-.466-.906-1-1.293-1.6-.387-.6-.743-1.28-1.069-2.04h1.71c.272.52.544.973.815 1.36.272.387.597.773.978 1.16.448-.44.913-1.057 1.395-1.85.482-.794.845-1.55 1.089-2.27H1v-1.6h5.701v-1.6h1.63v1.6h5.7v1.6H11.67c-.285.96-.713 1.947-1.283 2.96s-1.134 1.787-1.69 2.32l1.955 1.96-.611 1.64-2.484-2.5-4.114 4.02Zm9.53-1.44h2.932l-1.466-4.08-1.466 4.08Z"/></svg>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="review_item show_translated">
<div class="r_body">
<div class="r_head">
<div class="g_star_rating two_star"><span></span></div>
<div class="r_date">5 months ago</div>
</div>
<div class="r_text">
<span class="translated_trunc">Valya is a treasure among beauticians! She is a real professional, which I really missed after moving. I have quite problematic skin and it has always been quite difficult for me to find a competent cosmetologist, but now … </span>
<span class="original_trunc">Валя - сокровище среди косметологов! настоящий профессионал своего дела, которого мне очень не хватало после переезда. У меня достаточно проблемная кожа и мне всегда было довольно сложно найти грамотного косметолога, а сейчас … </span>
<span class="translated full_text">Valya is a treasure among beauticians! She is a real professional, which I really missed after moving. I have quite problematic skin and it has always been quite difficult for me to find a competent cosmetologist, but now I can say that this is the best cosmetologist to whom I have ever gone - always approaches care in a comprehensive way, gives valuable recommendations and never advises unnecessary. I see the result of her work every day in the mirror - well-groomed, radiant, clean skin - I never thought I would be able to leave the house without foundation on my face, but now I go out and with pleasure. And the atmosphere in the salon deserves separate words - always incredibly warm, warm, always delicious coffee, fresh flowers and open, friendly сотрудницы🕊️.<br>I recommend it with all my heart!</span>
<span class="original full_text">Валя - сокровище среди косметологов! настоящий профессионал своего дела, которого мне очень не хватало после переезда. У меня достаточно проблемная кожа и мне всегда было довольно сложно найти грамотного косметолога, а сейчас могу сказать, что это лучший косметолог, к которому я когда-либо обращалась - всегда комплексно подходит к уходу, дает ценные рекомендации и никогда не посоветует лишнего. Вижу результат трудов каждый день в зеркале - ухоженная, сияющая, чистая кожа - я никогда не думала, что смогу выходить из дома без тона на лице, а сейчас выхожу и с удовольствием. А атмосфера в салоне заслуживает отдельных слов - всегда невероятно тепло, душевно, всегда вкусный кофе , свежие цветы и открытые, дружелюбные сотрудницы🕊️<br>Рекомендую всем сердцем !</span>
<span class="read-more">read more</span></div>
</div>
<div class="r_meta">
<div class="r_author">
<img src="/images/reviews/no_avatar.png" loading="lazy" alt="Vera Strochkova" class="r_author_img"/>
<div>
<div class="r_author_name">Vera Strochkova</div>
<div class="r_source">Review from Google</div>
</div>
</div>
<div class="translate_review" hover-tooltip="Show original text" tooltip-position="top-right" tooltip-wrap="nowrap">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path fill="#CEB588" d="m9.878 18.088 3.706-9.6h1.71l3.706 9.6h-1.71l-.876-2.44h-3.95l-.876 2.44h-1.71Zm-6.435-2.4-1.14-1.12 4.113-4.04c-.475-.466-.906-1-1.293-1.6-.387-.6-.743-1.28-1.069-2.04h1.71c.272.52.544.973.815 1.36.272.387.597.773.978 1.16.448-.44.913-1.057 1.395-1.85.482-.794.845-1.55 1.089-2.27H1v-1.6h5.701v-1.6h1.63v1.6h5.7v1.6H11.67c-.285.96-.713 1.947-1.283 2.96s-1.134 1.787-1.69 2.32l1.955 1.96-.611 1.64-2.484-2.5-4.114 4.02Zm9.53-1.44h2.932l-1.466-4.08-1.466 4.08Z"/></svg>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="review_item show_translated">
<div class="r_body">
<div class="r_head">
<div class="g_star_rating one_star"><span></span></div>
<div class="r_date">2 years ago</div>
</div>
<div class="r_text">
<span class="translated_trunc">I would like to say thank you very much to the wonderful beautician Valentina! She is a wonderful specialist, very tactful and delicate during the procedure. It is very comfortable to communicate with her, she will answer … </span>
<span class="original_trunc">Хочу сказать спасибо большое прекрасному косметологу Валентине! Замечательный специалист, при проведении процедуры очень тактичная и деликатная. В общении очень с ней комфортно … </span>
<span class="translated full_text">I would like to say thank you very much to the wonderful beautician Valentina! She is a wonderful specialist, very tactful and delicate during the procedure. I would like to express my gratitude to her professionalism, light hands and the magic that she did to my face. As one famous cartoon said: *I am yours forever*<br>I recommend to all girls who care about the beauty of their appearance.💙💙💙</span>
<span class="original full_text">Хочу сказать спасибо большое прекрасному косметологу Валентине! Замечательный специалист, при проведении процедуры очень тактичная и деликатная. В общении очень с ней комфортно, ответит на все вопросы.Хочу выразить огромную благодарность её профессионализму, лёгким рукам и тому волшебству, что она сотворила с моим лицом. Как говорилось в одном известном мультфильме: * Я ваша на веки*<br>Рекомендую всем девочкам кто заботится о красоте своей внешности.💙💙💙</span>
<span class="read-more">read more</span></div>
</div>
<div class="r_meta">
<div class="r_author">
<img src="/images/reviews/author_1.png" loading="lazy" alt="Elena Romaniutina" class="r_author_img"/>
<div>
<div class="r_author_name">Elena Romaniutina</div>
<div class="r_source">Review from Google</div>
</div>
</div>
<div class="translate_review" hover-tooltip="Show original text" tooltip-position="top-right" tooltip-wrap="nowrap">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path fill="#CEB588" d="m9.878 18.088 3.706-9.6h1.71l3.706 9.6h-1.71l-.876-2.44h-3.95l-.876 2.44h-1.71Zm-6.435-2.4-1.14-1.12 4.113-4.04c-.475-.466-.906-1-1.293-1.6-.387-.6-.743-1.28-1.069-2.04h1.71c.272.52.544.973.815 1.36.272.387.597.773.978 1.16.448-.44.913-1.057 1.395-1.85.482-.794.845-1.55 1.089-2.27H1v-1.6h5.701v-1.6h1.63v1.6h5.7v1.6H11.67c-.285.96-.713 1.947-1.283 2.96s-1.134 1.787-1.69 2.32l1.955 1.96-.611 1.64-2.484-2.5-4.114 4.02Zm9.53-1.44h2.932l-1.466-4.08-1.466 4.08Z"/></svg>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="review_item show_translated">
<div class="r_body">
<div class="r_head">
<div class="g_star_rating star_rating_unspecified"><span></span></div>
<div class="r_date">3 months ago</div>
</div>
<div class="r_text">
<span class="translated_trunc">If I could give it 10 stars I would be happy to do so! Schönheitsinstitut "Tvoya" is top notch. Beautiful and stylish interior, from the doorstep you feel like a special client, I have not met such an attitude … </span>
<span class="original_trunc">Если бы можно было поставить 10 звёзд-я бы с радостью это сделала! Schönheitsinstitut "Tvoya" на высоте. Красивый и стильный интерьер, с порога чувствуешь себя особым клиентом … </span>
<span class="translated full_text">If I could give it 10 stars I would be happy to do so! Schönheitsinstitut "Tvoya" is top notch. Beautiful and stylish interior, from the doorstep you feel like a special client, I have not met such an attitude anywhere else. Coming there you get both aesthetic pleasure and quality services. Nice staff and, most importantly, incredible doctors! I come from Austria, I have been there more than once and I will be back again and again! I have been to Valentina for a facial cleanse, peel and maintenance treatments. Valentina was very informative about further care and how to achieve the desired results. Another plus is that after the procedure in the salon you can immediately buy cosmetics. That significantly helps to prolong and preserve the result after the salon procedure. Valentina envelops you with gentle care every time. You want to come back here and spend as much time as possible! I look forward to the next term!</span>
<span class="original full_text">Если бы можно было поставить 10 звёзд-я бы с радостью это сделала! Schönheitsinstitut "Tvoya" на высоте. Красивый и стильный интерьер, с порога чувствуешь себя особым клиентом, такого отношения я не встречала нигде. Приходя туда получаешь и эстетическое удовольствие и качественные услуги. Приятный коллектив и, что самое главное, невероятные врачи! Я приезжаю из Австрии, была не один раз и вернусь ещё и ещё!! Я была у Валентины, делала чистку лица, пилинг и уходовые процедуры. Валентина очень информативно рассказала про дальнейший уход и как добиться желаемого результата. Еще один плюс заключается в том, что после процедуры в салоне можно сразу же приобрести косметику. Что значительно помогает продлить и сохранить результат после салонной процедуры. Валентина окутывает бережной заботой каждый раз. Сюда хочется возращаться и проводить как можно больше времени! Я с нетерпением жду следующего термина!</span>
<span class="read-more">read more</span>
</div>
</div>
<div class="r_meta">
<div class="r_author">
<img src="/images/reviews/no_avatar.png" loading="lazy" alt="Алена Кишова" class="r_author_img"/>
<div>
<div class="r_author_name">Алена Кишова</div>
<div class="r_source">Review from Google</div>
</div>
</div>
<div class="translate_review" hover-tooltip="Show original text" tooltip-position="top-right" tooltip-wrap="nowrap">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path fill="#CEB588" d="m9.878 18.088 3.706-9.6h1.71l3.706 9.6h-1.71l-.876-2.44h-3.95l-.876 2.44h-1.71Zm-6.435-2.4-1.14-1.12 4.113-4.04c-.475-.466-.906-1-1.293-1.6-.387-.6-.743-1.28-1.069-2.04h1.71c.272.52.544.973.815 1.36.272.387.597.773.978 1.16.448-.44.913-1.057 1.395-1.85.482-.794.845-1.55 1.089-2.27H1v-1.6h5.701v-1.6h1.63v1.6h5.7v1.6H11.67c-.285.96-.713 1.947-1.283 2.96s-1.134 1.787-1.69 2.32l1.955 1.96-.611 1.64-2.484-2.5-4.114 4.02Zm9.53-1.44h2.932l-1.466-4.08-1.466 4.08Z"/></svg>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="review_item show_translated">
<div class="r_body">
<div class="r_head">
<div class="g_star_rating five_star"><span></span></div>
<div class="r_date">5 months ago</div>
</div>
<div class="r_text">
<span class="translated_trunc">Valya is a treasure among beauticians! She is a real professional, which I really missed after moving. I have quite problematic skin and it has always been quite difficult for me to find a competent cosmetologist, but now … </span>
<span class="original_trunc">Валя - сокровище среди косметологов! настоящий профессионал своего дела, которого мне очень не хватало после переезда. У меня достаточно проблемная кожа и мне всегда было довольно сложно найти грамотного косметолога, а сейчас … </span>
<span class="translated full_text">Valya is a treasure among beauticians! She is a real professional, which I really missed after moving. I have quite problematic skin and it has always been quite difficult for me to find a competent cosmetologist, but now I can say that this is the best cosmetologist to whom I have ever gone - always approaches care in a comprehensive way, gives valuable recommendations and never advises unnecessary. I see the result of her work every day in the mirror - well-groomed, radiant, clean skin - I never thought I would be able to leave the house without foundation on my face, but now I go out and with pleasure. And the atmosphere in the salon deserves separate words - always incredibly warm, warm, always delicious coffee, fresh flowers and open, friendly сотрудницы🕊️.<br>I recommend it with all my heart!</span>
<span class="original full_text">Валя - сокровище среди косметологов! настоящий профессионал своего дела, которого мне очень не хватало после переезда. У меня достаточно проблемная кожа и мне всегда было довольно сложно найти грамотного косметолога, а сейчас могу сказать, что это лучший косметолог, к которому я когда-либо обращалась - всегда комплексно подходит к уходу, дает ценные рекомендации и никогда не посоветует лишнего. Вижу результат трудов каждый день в зеркале - ухоженная, сияющая, чистая кожа - я никогда не думала, что смогу выходить из дома без тона на лице, а сейчас выхожу и с удовольствием. А атмосфера в салоне заслуживает отдельных слов - всегда невероятно тепло, душевно, всегда вкусный кофе , свежие цветы и открытые, дружелюбные сотрудницы🕊️<br>Рекомендую всем сердцем !</span>
<span class="read-more">read more</span></div>
</div>
<div class="r_meta">
<div class="r_author">
<img src="/images/reviews/no_avatar.png" loading="lazy" alt="Vera Strochkova" class="r_author_img"/>
<div>
<div class="r_author_name">Vera Strochkova</div>
<div class="r_source">Review from Google</div>
</div>
</div>
<div class="translate_review" hover-tooltip="Show original text" tooltip-position="top-right" tooltip-wrap="nowrap">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path fill="#CEB588" d="m9.878 18.088 3.706-9.6h1.71l3.706 9.6h-1.71l-.876-2.44h-3.95l-.876 2.44h-1.71Zm-6.435-2.4-1.14-1.12 4.113-4.04c-.475-.466-.906-1-1.293-1.6-.387-.6-.743-1.28-1.069-2.04h1.71c.272.52.544.973.815 1.36.272.387.597.773.978 1.16.448-.44.913-1.057 1.395-1.85.482-.794.845-1.55 1.089-2.27H1v-1.6h5.701v-1.6h1.63v1.6h5.7v1.6H11.67c-.285.96-.713 1.947-1.283 2.96s-1.134 1.787-1.69 2.32l1.955 1.96-.611 1.64-2.484-2.5-4.114 4.02Zm9.53-1.44h2.932l-1.466-4.08-1.466 4.08Z"/></svg>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mob-show text-center">
<h3>Our 5-star Google rating is based on real reviews from our customers</h3>
</div>
</div>
</div>
</section>
<section class="founder-module">
<div class="container">
<div class="section-header">
<div class="section-title-wrp">
<div class="section-title">Founder</div>
</div>
</div>
<div class="d-flex gap-60 align-items-center">
<div class="img-clip col-5">
<img src="/images/[email protected]" srcset="/images/[email protected] 2x" alt="Founder of TVOYA Beauty Institute" style="clip-path:url(#mask5);" loading="lazy" />
<svg xmlns="http://www.w3.org/2000/svg" width="0px" height="0px" viewBox="0 0 491 486" fill="none" class="clip-mask">
<defs>
<clipPath id="mask5" clipPathUnits="objectBoundingBox">
<path d="M0.656,0.023 c0.211,0.06,0.335,0.261,0.344,0.475 c0.009,0.207,-0.104,0.406,-0.303,0.478 c-0.194,0.07,-0.399,-0.02,-0.531,-0.175 c-0.142,-0.165,-0.227,-0.39,-0.111,-0.573 C0.178,0.032,0.431,-0.042,0.656,0.023"></path>
</clipPath>
</defs>
</svg>
<div class="img-label founder-exp d-flex align-items-center">
<div class="fz-large">10+</div>
<div>Years of<br>experience</div>
</div>
</div>
<div class="d-flex flex-column gap-30">
<h2 class="h2">Meet Our Founder — Valentina Tuz</h2>
<div class="text-block">
<p>Valentina Tuz, our esteemed founder, brings over 10 years of cosmetology experience, dedicated to transforming lives and instilling confidence. Her passion for beauty and self-care inspired her to create a positive impact for others.</p>
</div>
<div class="d-flex gap-40 bio-highlights">
<div class="col">
<div class="icon icon-certificate"></div>
<h3>Medical Graduate's Learning Path</h3>
<p>Medical school grad, lifelong learner, attended 15+ conferences. Committed to excellence</p>
</div>
<div class="col">
<div class="icon icon-beauty-products"></div>
<h3>Mission and Values</h3>
<p>Empowering beauty, embracing confidence. Integrity, innovation, transformative experiences.</p>
</div>
</div>
<a href="#" class="btn btn-md btn-beige-1 mt-2">
<span class="btn-text">more about Valentina</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"/></svg></span>
</a>
</div>
</div>
</div>
</section>
<section class="certificates-module swiper-carousel">
<div class="container">
<div class="section-header">
<div class="section-title">
<div>Certificates and Awards</div>
</div>
<div class="navigation-wrp">
<div class="sw-pagination"></div>
<div class="arrows-control">
<button role="button" class="btn swiper-arrow sw-button-prev"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-width="2" d="M18.333 10H1.667m16.666 0-6.908-7.5m6.908 7.5-6.908 7.5"/></svg></button>
<button role="button" class="btn swiper-arrow sw-button-next"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-width="2" d="M18.333 10H1.667m16.666 0-6.908-7.5m6.908 7.5-6.908 7.5"/></svg></button>
</div>
</div>
</div>
<div class="d-flex gap-50 align-items-center">
<div class="swiper">
<div class="swiper-wrapper">
<div class="swiper-slide"><a href="/images/certificates/01.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/01-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/02.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/02-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/03.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/03-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/04.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/04-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/05.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/05-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/06.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/06-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/07.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/07-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/08.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/08-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/09.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/09-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/10.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/10-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/11.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/11-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/12.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/12-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/13.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/13-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/14.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/14-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/15.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/15-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
<div class="swiper-slide"><a href="/images/certificates/16.jpg" data-fancybox="certificates"><img src="/images/certificates/thumbs/16-thumb.jpg" alt="Certificate" loading="lazy"></a></div>
</div>
</div>
</div>
</div>
</section>
<section class="consultation-promo">
<div class="container">
<div class="big-logo">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 1047 215">
<path fill="#E4DCCA" d="M76.642 10.847h-5.57C12.032 10.847 0 31.195 0 31.195L8.763 4.414h161.974l8.764 26.781s-11.66-20.348-71.073-20.348h-5.273v199.739H76.568l.074-199.739Zm236.017 199.664c-1.039 1.796-4.01 1.646-4.976 0L203.86 4.339h28.963s-7.872 16.009 5.867 43.538c3.342 6.733 63.126 126.951 63.126 126.951l84.812-170.49h29.855L312.659 210.512ZM550.236 0c75.008 0 112.513 53.638 112.513 107.5S625.244 215 550.236 215C475.227 215 437.5 161.138 437.5 107.5S475.004 0 550.236 0Zm-14.853 201.46c68.027 0 107.017-59.099 107.017-111.016 0-40.696-24.137-76.978-77.311-76.978-68.028 0-107.314 58.8-107.314 110.791 0 40.696 24.136 77.203 77.608 77.203ZM671.586 4.414h32.157l67.285 100.767s58.596-77.203 61.047-80.494c2.153-2.918 3.936-8.005 3.564-12.12-.371-4.114-4.604-8.228-4.604-8.228h26.81L777.861 113.41c-1.263 1.646-1.857 3.666-1.857 5.76v91.341h-26.587v-85.955a9.773 9.773 0 0 0-1.634-5.386L671.586 4.414ZM1047 210.511 943.176 4.339c-.817-1.72-4.084-1.72-4.975 0L834.377 210.51h27.775s-4.381-4.638-4.381-13.465c0-7.93 3.713-15.411 10.471-28.951l63.72-126.95 46.342 91.865c-16.19-8.603-44.485-15.934-80.95 5.461 0 0 43.743-23.116 92.09 16.607l27.926 55.359h29.56l.07.074Z" opacity=".5"/>
</svg>
</div>
<div class="d-flex gap-30 align-items-end">
<div class="col">
<h2 class="h2">Professional Consultation & Cosmetics Selection</h2>
<a href="#" class="btn btn-md btn-beige-1 mt-4 mb-3">
<span class="btn-text">read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"/></svg></span>
</a>
</div>
<div class="col img-clip">
<img src="/images/cosmetics_set_o.png" width="390" alt="" loading="lazy"/>
</div>
<div class="col text-right">
<button type="button" class="btn btn-gold make-reservation mb-3">Make a Reservation <span class="icon icon-calendar"></span></button>
</div>
</div>
</div>
</section>
<section class="contact-module">
<div class="location-map" id="map"></div>
<div class="container">
<div class="contact-block col-5 d-flex flex-column gap-20">
<div class="h2">Contact & Location</div>
<div class="section address">
<p class="h3">Address:</p>
<p>Schellingstraße 109a, 80798 München</p>
</div>
<div class="section working-hours">
<p class="h3">Working hours:</p>
<p>Mon - Fri, 9:00 - 18:00</p>
<p>Appointments by arrangement</p>
</div>
<div class="section phone">
<p class="h3">Phone:</p>
<p>+49 176-748-744-07</p>
</div>
<div class="section">
<p class="h3">Exterior views:</p>
<div class="exterior-views">
<a href="/images/equipment-1-o.jpg" data-fancybox="exterior-views"><img src="/images/equipment-1-o.jpg" alt="View 1" loading="lazy"/></a>
<a href="/images/equipment-2-o.jpg" data-fancybox="exterior-views"><img src="/images/equipment-2-o.jpg" alt="View 2" loading="lazy"/></a>
<a href="/images/equipment-3-o.jpg" data-fancybox="exterior-views"><img src="/images/equipment-3-o.jpg" alt="View 3" loading="lazy"/></a>
</div>
</div>
</div>
</div>
</section>
<section class="news-module swiper-carousel">
<div class="container">
<div class="section-header">
<div class="section-title">
<div>Latest News</div>
</div>
<div class="navigation-wrp">
<div class="sw-pagination"></div>
<div class="arrows-control">
<button role="button" class="btn swiper-arrow sw-button-prev"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-width="2" d="M18.333 10H1.667m16.666 0-6.908-7.5m6.908 7.5-6.908 7.5"/></svg></button>
<button role="button" class="btn swiper-arrow sw-button-next"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-width="2" d="M18.333 10H1.667m16.666 0-6.908-7.5m6.908 7.5-6.908 7.5"/></svg></button>
</div>
</div>
</div>
<div class="d-flex gap-50 align-items-center">
<div class="swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<!-- .news-item>img.news-img+(.news-body>span.date+h3+p.text)+.news-link>.btn.btn-link -->
<div class="news-item">
<img src="/images/news/news-1.jpg" alt="Grand Opening Event: Unveiling Our New Salon Location" class="news-img" loading="lazy">
<div class="news-body">
<span class="date">April 28, 2024</span>
<h3>Grand Opening Event: Unveiling Our New Salon Location</h3>
<p class="text">Join us on April 28th for the grand opening of our new salon location! Experience top-notch services, exclusive offers, and exciting giveaways.</p>
</div>
<a href="#" class="btn btn-sm btn-link"><span class="btn-text">Read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a>
</div>
</div>
<div class="swiper-slide">
<div class="news-item">
<img src="/images/news/news-2.jpg" alt="Introducing Our Latest Skincare Innovation: HydraGlow Therapy" class="news-img" loading="lazy">
<div class="news-body">
<span class="date">April 28, 2024</span>
<h3>Introducing Our Latest Skincare Innovation: HydraGlow Therapy</h3>
<p class="text">We're thrilled to introduce HydraGlow Therapy! Reveal radiant, hydrated skin with our revolutionary treatment, now available at our salon.</p>
</div>
<a href="#" class="btn btn-sm btn-link"><span class="btn-text">Read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a>
</div>
</div>
<div class="swiper-slide">
<div class="news-item">
<img src="/images/news/news-3.jpg" alt="Celebrating Mother's Day: Pamper Your Mom at Our Salon" class="news-img" loading="lazy">
<div class="news-body">
<span class="date">April 28, 2024</span>
<h3>Celebrating Mother's Day: Pamper Your Mom at Our Salon</h3>
<p class="text">Show your mom some love this Mother's Day! Treat her to a day of relaxation and beauty with our special pampering packages.</p>
</div>
<a href="#" class="btn btn-sm btn-link"><span class="btn-text">Read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a>
</div>
</div>
<div class="swiper-slide">
<div class="news-item">
<img src="/images/news/news-4.jpg" alt="Join Our Team: We're Hiring Experienced Hairstylists!" class="news-img" loading="lazy">
<div class="news-body">
<span class="date">April 28, 2024</span>
<h3>Join Our Team: We're Hiring Experienced Hairstylists!</h3>
<p class="text">Are you a talented hairstylist looking for a new opportunity? Join our dynamic team and showcase your skills at our thriving salon! Apply now.</p>
</div>
<a href="#" class="btn btn-sm btn-link"><span class="btn-text">Read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a>
</div>
</div>
<div class="swiper-slide">
<div class="news-item">
<img src="/images/news/news-2.jpg" alt="Introducing Our Latest Skincare Innovation: HydraGlow Therapy" class="news-img" loading="lazy">
<div class="news-body">
<span class="date">April 28, 2024</span>
<h3>Introducing Our Latest Skincare Innovation: HydraGlow Therapy</h3>
<p class="text">We're thrilled to introduce HydraGlow Therapy! Reveal radiant, hydrated skin with our revolutionary treatment, now available at our salon.</p>
</div>
<a href="#" class="btn btn-sm btn-link"><span class="btn-text">Read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a>
</div>
</div>
<div class="swiper-slide">
<div class="news-item">
<img src="/images/news/news-3.jpg" alt="Celebrating Mother's Day: Pamper Your Mom at Our Salon" class="news-img" loading="lazy">
<div class="news-body">
<span class="date">April 28, 2024</span>
<h3>Celebrating Mother's Day: Pamper Your Mom at Our Salon</h3>
<p class="text">Show your mom some love this Mother's Day! Treat her to a day of relaxation and beauty with our special pampering packages.</p>
</div>
<a href="#" class="btn btn-sm btn-link"><span class="btn-text">Read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a>
</div>
</div>
<div class="swiper-slide">
<div class="news-item">
<img src="/images/news/news-1.jpg" alt="Join Our Team: We're Hiring Experienced Hairstylists!" class="news-img" loading="lazy">
<div class="news-body">
<span class="date">April 28, 2024</span>
<h3>Join Our Team: We're Hiring Experienced Hairstylists!</h3>
<p class="text">Are you a talented hairstylist looking for a new opportunity? Join our dynamic team and showcase your skills at our thriving salon! Apply now.</p>
</div>
<a href="#" class="btn btn-sm btn-link"><span class="btn-text">Read more</span><span class="btn-icon icon-link-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#222" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 17.37 14-14m0 0H4.75m12.25 0v12.25"></path></svg></span></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>