-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1040 lines (981 loc) · 34.7 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="zxx">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Sparadise Sparkles to your Shine | Home
</title>
<!-- Template CSS -->
<link rel="stylesheet" href="assets/css/style-starter.css">
<!-- Template CSS -->
<link
href="//fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,600&display=swap"
rel="stylesheet">
<link href="//fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
<!-- Template CSS -->
</head>
<body>
<!--header-->
<header id="site-header" class="fixed-top">
<div class="container-fluid">
<nav class="navbar navbar-expand-lg navbar-dark stroke">
<h1> <a class="navbar-brand" href="index.html">
<span class="sub-logo">S</span>para<span class="sub-logo">d</span>ise
</a></h1>
<a class="navbar-brand" href="#index.html">
<img src="assets\images\logo.png" alt="Your logo" title="Your logo" style="height:35px;" />
</a>
<button class="navbar-toggler collapsed bg-gradient" type="button" data-toggle="collapse"
data-target="#navbarTogglerDemo02" aria-controls="navbarTogglerDemo02" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon fa icon-expand fa-bars"></span>
<span class="navbar-toggler-icon fa icon-close fa-times"></span>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="services.html">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<!--/search-right-->
<div class="search-right">
<a href="#search" class="hnysearch-icon" title="search"><span class="fa fa-search"
aria-hidden="true"></span></a>
<!-- search popup -->
<div id="search" class="pop-overlay">
<div class="popup">
<h3 class="hny-title two">Search Here</h3>
<form action="#" method="post" class="search-box">
<input type="search" placeholder="Search your Keyword" name="search"
required="required" autofocus="">
<button type="submit" class="btn">Search</button>
</form>
</div>
<a class="close" href="#close">×</a>
</div>
<!-- /search popup -->
<a href="#domain" class="domain" data-toggle="modal" data-target="#DomainModal">
<div class="hamburger1">
<div></div>
<div></div>
<div></div>
</div>
</a>
<!--//search-right-->
</div>
</div>
</nav>
</div>
</header>
<!--/header-->
<!-- Domain Modal -->
<div class="modal right fade" id="DomainModal" tabindex="-1" role="dialog" aria-labelledby="DomainModalLabel2">
<div class="modal-dialog" role="document">
<div class="modal-content">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">×</span></button>
<div class="modal-body">
<div class="modal__content">
<h2 class="logo"><a class="logo-brand" href="index.html">
<span class="sub-logo">S</span>para<span class="sub-logo">d</span>ise<br>
</a></h2>
<h2 class="logo">
<img src="assets\images\logo.png" alt="Your logo" title="Your logo" style="height:35px;" />
</h2>
<p class="mt-md-3 mt-2">Sparkles to your shine!!</p>
<div class="widget-menu-items mt-sm-5 mt-4">
<h5 class="widget-title">Menu Items</h5>
<nav class="navbar p-0">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="services.html">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
<div class="widget-social-icons mt-sm-5 mt-4">
<h5 class="widget-title">Contact Us</h5>
<ul class="icon-rounded address">
<li>
<p> 90 Villa Complex, Koregaon Park, <br> Pune-411017, India.</p>
</li>
<li class="mt-3">
<p><span class="fa fa-phone"></span> <a
href="tel:+404-11-22-89">+91 9168764572</a></p>
</li>
<li class="mt-2">
<p><span class="fa fa-envelope"></span> <a
href="mailto:[email protected]">[email protected]</a></p>
</li>
<li class="top_li1 mt-2">
<p><span class="fa fa-clock-o"></span> <a href="mailto:[email protected]">Mon
- Sun 10:00 - 21:00
</a></p>
</li>
</ul>
</div>
<div class="widget-social-icons mt-sm-5 mt-4">
<h5 class="widget-title">Follow Us</h5>
<ul class="icon-rounded">
<li><a class="social-link twitter" href="#url" target="_blank"><i
class="fa fa-twitter"></i></a></li>
<li><a class="social-link linkedin" href="#url" target="_blank"><i
class="fa fa-linkedin"></i></a></li>
<li><a class="social-link tumblr" href="#url" target="_blank"><i
class="fa fa-tumblr"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- //modal-content -->
</div>
<!-- //modal-dialog -->
</div>
<!-- //Domain modal -->
<!-- main-slider -->
<section class="w3l-main-slider position-relative" id="home">
<div class="companies20-content">
<div class="owl-one owl-carousel owl-theme">
<div class="item">
<li>
<div class="slider-info banner-view bg bg2">
<div class="banner-info">
<div class="container">
<div class="banner-info-bg text-center">
<h4 class="sub-font">Show the world a healthy face!</h4>
<h5>Healing body, mind, and spirit!</h5>
<div class="banner-buttons mt-md-5 mt-4">
<a class="btn btn-style btn-primary" href="services.html">Our Services</a>
</div>
</div>
</div>
</div>
</div>
</li>
</div>
<div class="item">
<li>
<div class="slider-info banner-view banner-top1 bg bg2">
<div class="banner-info">
<div class="container">
<div class="banner-info-bg text-center">
<h4 class="sub-font">Feel natural, be natural.</h4>
<h5>Creating your beauty at New Level</h5>
<div class="banner-buttons mt-md-5 mt-4">
<a class="btn btn-style btn-primary" href="services.html">Our Services</a>
</div>
</div>
</div>
</div>
</div>
</li>
</div>
<div class="item">
<li>
<div class="slider-info banner-view banner-top2 bg bg2">
<div class="banner-info">
<div class="container">
<div class="banner-info-bg text-center">
<h4 class="sub-font">Show the world a healthy face!</h4>
<h5>See yourself in a New Light.</h5>
<div class="banner-buttons mt-md-5 mt-4">
<a class="btn btn-style btn-primary" href="services.html">Our Services</a>
</div>
</div>
</div>
</div>
</div>
</li>
</div>
<div class="item">
<li>
<div class="slider-info banner-view banner-top3 bg bg2">
<div class="banner-info">
<div class="container">
<div class="banner-info-bg text-center">
<h4 class="sub-font">Feel natural, be natural.</h4>
<h5>Creating your beauty at New Level</h5>
<div class="banner-buttons mt-md-5 mt-4">
<a class="btn btn-style btn-primary" href="services.html">Our Services</a>
</div>
</div>
</div>
</div>
</div>
</li>
</div>
</div>
<div class="banhny-timing">MON - Sun : 10:00AM - 9:00PM </div>
<div class="banhny-left-botm">Natural & Glowing Makeup Look</div>
<div class="scrollhny-btn">
<a class="btn-btmhny scroll" href="#about">
<div class="scroll-arrow"></div>
<div class="scroll-arrow"></div>
<div class="scroll-arrow"></div>
</a>
</div>
</div>
</section>
<!-- //banner-slider-->
<!-- main-slider -->
<!-- //bottom-grids -->
<div class="w3l-bottom-grids py-5" id="about">
<div class="container py-lg-5">
<div class="row bottomhny-grids-sec text-center">
<div class="col-md-10 bottomhny-1 mx-auto">
<div class="bottomhny-gd-ingf">
<h6 class="sub-title">About Us</h6>
<h3 class="hny-title">Welcome to Home of Beauty,<br>Relaxation and Respite</h3>
<p class="mt-3">Being one of the best Thai Spa in India, The Sparadise is always ready to help relieve your body aches & stress which are prominent
causes of misery nowadays. We are here to provide you with the best spa experience. At The Sparadise we’re committed to curing your physical and
mental irritation with world-class massages and enhancing your inner beauty with uniquely rejuvenating spa therapies. We take you on an
ultimate journey of therapeutic massages to elevate your spirits and amplify your energy levels.
So, get ready to experience luxurious spa treatments and rejuvenate yourself in the best spa in India!</p>
<div class="ready-more mt-lg-5 mt-4">
<a class="btn btn-style btn-primary" href="about.html">Read More</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- //bottom-grids -->
<!--/features-grids-6-->
<section class="features-grids-6">
<div class="container">
<div class="grids-area-hny main-cont-wthree-fea row">
<div class="col-lg-4 col-md-6 grids-feature mb-md-0 mb-4">
<div class="area-box">
<span class="fa fa-bath"></span>
<a href="#feature">
<h4 class="title-head">Hydro Therapy</h4>
</a>
<p>Experience a deep sense of relaxation in Sparadise, with the essential therapy with Hydra....</p>
</div>
</div>
<div class="col-lg-4 col-md-6 grids-feature mb-md-0 mb-4">
<div class="area-box active">
<span class="fa fa-american-sign-language-interpreting active"></span>
<a href="#feature">
<h4 class="title-head">Relaxing Massages</h4>
</a>
<p>Relax and rejuvenate with the traditional Thai dry therapy that blends the majestic elements of yoga....</p>
</div>
</div>
<div class="col-lg-4 col-md-6 grids-feature mb-md-0 mb-4">
<div class="area-box thrid">
<span class="fa fa-flask"></span>
<a href="#feature">
<h4 class="title-head">Aroma Therapy</h4>
</a>
<p>Experience a deep sense of relaxation in Sparadise, with the essential oils of Aromatherapy....</p>
</div>
</div>
</div>
</div>
</section>
<!--//features-grids-6-->
<!-- /specification-6-->
<section class="w3l-specification-6">
<div class="specification-6-mian py-5">
<div class="container py-lg-5">
<div class="row story-6-grids py-lg-5">
<div class="col-lg-10 story-gd pl-lg-4 text-center mx-auto">
<div class="skill_info mt-lg-5 mt-4 pt-lg-4">
<div class="stats_left">
<div class="counter_grid">
<div class="icon_info">
<p class="counter">90</p>
<h4>Massage Therapy</h4>
</div>
</div>
</div>
<div class="stats_left">
<div class="counter_grid">
<div class="icon_info">
<p class="counter">165</p>
<h4>Sauna</h4>
</div>
</div>
</div>
<div class="stats_left">
<div class="counter_grid">
<div class="icon_info">
<p class="counter">363</p>
<h4>Soften the Soul</h4>
</div>
</div>
</div>
<div class="stats_left">
<div class="counter_grid">
<div class="icon_info">
<p class="counter">4351</p>
<h4>Happy Clients</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //specification-6-->
<!-- /w3l-content-with-photo-4-->
<section class="w3l-content-with-photo-4">
<!-- /content-grids-->
<div class="content-photo-info py-5">
<div class="container py-lg-5">
<!-- /row-->
<div class="content-photo-grids">
<div class="photo-6-inf-right">
<h6 class="sub-title">Health & Relaxation</h6>
<h3 class="hny-title">
Our Philosophy
</h3>
<p class="mt-3">Stress, anxiety and tension have become an integral part of our life. Nowadays people forget to
take care of their body wellness. The Sparadise is the latest and innovative initiative in the realm of
spa and wellness sector in India. Harnessing the positive energy of the nature, this spa and salon is
designed perfectly to enhance your inner beauty with the unique rejuvenating experience in The Sparadise.<br>
Some of our special services are:</p>
<div class="servehny-1">
<div class="ser-sub">
<a href="#link" class="ser1"><span class="fa fa-check"></span> Facials
</a>
<a href="#link" class="ser1"><span class="fa fa-check"></span> Body Treatments
</a>
<a href="#link" class="ser1"><span class="fa fa-check"></span> Waxing</a>
<a href="#link" class="ser1"><span class="fa fa-check"></span> Massage</a>
</div>
<div class="ser-sub">
<a href="#link" class="ser1"><span class="fa fa-check"></span> Home cleaning
</a>
<a href="#link" class="ser1"><span class="fa fa-check"></span> Hands & Feet</a>
<a href="#link" class="ser1"><span class="fa fa-check"></span>
Aroma Therapy</a>
<a href="#link" class="ser1"><span class="fa fa-check"></span>
Tea Therapy</a>
</div>
</div>
<div class="read-buttons">
<a class="btn btn-style two btn-primary" href="services.html">Our Services</a>
<a class="btn btn-style btn-primary" href="contact.html">Contact Us</a>
</div>
</div>
</div>
<!-- //row-->
</div>
</div>
</section>
<!-- /w3l-content-with-photo-4-->
<!-- /w3l-content-grids-->
<section class="w3l-index2">
<div class="row abouthy-img-grids no-gutters">
<div class="col-md-6 img-one">
<img src="assets/images/ab.jpg" alt=" " class="img-fluid">
</div>
<div class="col-md-6 img-one content-mid py-md-0 py-5">
<div class="info">
<h3 class="hny-title two">
Make-Up Services
</h3>
<p class="mt-3 mb-5 pr-lg-4">Makeup By Sparadise makeup artist Mel does makeup from weddings, fashion shoots, special occasions,
film and runway events to matric dance makeup, We offers a professional, high-end and experienced
makeup service.
</p>
<div class="ready-more">
<a class="btn btn-style btn-primary" href="services.html">Services</a>
</div>
</div>
</div>
<div class="col-md-6 img-info content-mid py-md-0 py-5">
<div class="info">
<h3 class="hny-title two">
Hair Styling Services
</h3>
<p class="mt-3 mb-5 pr-lg-4">The Sparadise is an establishment that offers professional hair styling services
for men and women. We offer hair services including professional hair styling and hair texturing and offcourse the hair spa too.
Sparadise also offer hair coloring, highlights, head and scalp treatments and formal styling.
</p>
<div class="ready-more">
<a class="btn btn-style btn-primary" href="services.html">Services</a>
</div>
</div>
</div>
<div class="col-md-6 img-one">
<img src="assets/images/ab1.jpg" alt=" " class="img-fluid">
</div>
</div>
</section>
<!-- /w3l-content-grids-->
<!--//news-grids-->
<section class="w3l-news-sec">
<div class="news-mainhny py-5">
<div class="container text-center py-lg-3">
<div class="title-content text-center mb-lg-5 mb-4">
<h6 class="sub-title">View</h6>
<h3 class="hny-title">Our Gallery</h3>
</div>
</div>
<div class="owl-news owl-carousel owl-theme">
<div class="item">
<div class="news-img position-relative">
<a href="#"><img src="assets/images/ab8.jpg" class="img-fluid" alt="news image"></a>
<div class="title-wrap">
<a href="#">
<h4 class="title">Hydro Therapy</h4>
</a>
<a href="#" class="text-right"><span class="fa fa-arrow-right"></span></a>
</div>
</div>
</div>
<div class="item">
<div class="news-img">
<a href="#"><img src="assets/images/ab9.jpg" class="img-fluid" alt="news image"></a>
<div class="title-wrap">
<a href="#">
<h4 class="title"> Hot Stone Massage <h4>
</a>
<a href="#" class="text-right"><span class="fa fa-arrow-right"></span></a>
</div>
</div>
</div>
<div class="item">
<div class="news-img">
<a href="#"><img src="assets/images/ab2.jpg" class="img-fluid" alt="news image"></a>
<div class="title-wrap">
<a href="#">
<h4 class="title">Pedicure</h4>
</a>
<a href="#" class="text-right"><span class="fa fa-arrow-right"></span></a>
</div>
</div>
</div>
<div class="item">
<div class="news-img">
<a href="#"><img src="assets/images/ab3.jpg" class="img-fluid" alt="news image"></a>
<div class="title-wrap">
<a href="#">
<h4 class="title">Natural Facials</h4>
</a>
<a href="#" class="text-right"><span class="fa fa-arrow-right"></span></a>
</div>
</div>
</div>
<div class="item">
<div class="news-img">
<a href="#"><img src="assets/images/ab5.jpg" class="img-fluid" alt="news image"></a>
<div class="title-wrap">
<a href="#">
<h4 class="title">Body Spa</h4>
</a>
<a href="#" class="text-right"><span class="fa fa-arrow-right"></span></a>
</div>
</div>
</div>
<div class="item">
<div class="news-img">
<a href="#"><img src="assets/images/ab4.jpg" class="img-fluid" alt="news image"></a>
<div class="title-wrap">
<a href="#">
<h4 class="title">Hair Spa</h4>
</a>
<a href="#" class="text-right"><span class="fa fa-arrow-right"></span></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--//news-grids-->
<!-- /blog-Section -->
<section class="w3l-blogluxe-hny" id="news">
<section id="grids5-block" class="py-5">
<div class="container py-lg-4">
<div class="header-section text-center mx-auto">
<h6 class="sub-title">We are here for you</h6>
<h3 class="hny-title">Latest Posts</h3>
</div>
<div class="grid-view">
<div class="row">
<div class="col-lg-4 col-md-6 mt-5">
<div class="grids5-info">
<a href="blog-single.html" class="d-block zoom">
<img src="assets/images/ab10.jpg" alt="" class="img-fluid news-image" />
</a>
<div class="blog-info">
<p class="date">26 Apr, 2022</p>
<a href="blog-single.html">
<h4>Skin Care Tips For Your Big Day</h4>
</a>
<p class="blog-text">If your big day is just around the corner,
here are a few must-have skin care tips for brides to be to give you the flawless wedding ......</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-5">
<div class="grids5-info">
<a href="blog-single.html" class="d-block zoom">
<img src="assets/images/ab11.jpg" alt="" class="img-fluid news-image" />
</a>
<div class="blog-info">
<p class="date">26 Sep, 2022</p>
<a href="blog-single.html">
<h4>Benefits of HotStone Massage Therapy</h4>
</a>
<p class="blog-text">Relieves Pain and Tension. Studies have proven that a hot stone massage can reduce stress
and anxiety. Fortifies the Immune System · Manages .....</p>
</div>
</div>
</div>
<div class="col-lg-4 offset-md-3 offset-lg-0 col-md-6 mt-5">
<div class="grids5-info">
<a href="blog-single.html" class="d-block zoom">
<img src="assets/images/ab6.jpg" alt="" class="img-fluid news-image" />
</a>
<div class="blog-info">
<p class="date">26 Jan, 2023</p>
<a href="blog-single.html">
<h4>The Benefits of Natural Cosmetics</h4>
</a>
<p class="blog-text">Flower and plants extracts are used. These products also contain nutrients
like Vitamin E to keep the skin clear, glowing and most importantly, .....</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<!-- //blog-Section -->
<!-- /w3l-newsletter-->
<section class="w3l-newsletter">
<!-- /form-25-section -->
<div class="form-25-main py-5">
<div class="container py-lg-5">
<div class="forms-25-info">
<div class="title-content text-center">
<h6 class="sub-title">Newsletter</h6>
<h3 class="hny-title two">Subscribe to get the latest
<br>news and updates.</h3>
</div>
<form action="#" method="post" class="signin-form mt-4 mb-2">
<div class="forms-gds">
<input type="text" name="" placeholder="Name" required />
<input type="email" name="" placeholder="Email" required />
<button class="btn btn-style btn-primary">Subscribe</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- //w3l-newsletter-->
<!--/testimonials-->
<section class="w3l-testimonials">
<div class="testimonials py-5">
<div class="container text-center py-lg-3">
<div class="title-content text-center mb-lg-5 mb-4">
<h6 class="sub-title">Testimonials</h6>
<h3 class="hny-title">What Our
People Says?</h3>
</div>
<div class="row">
<div class="col-lg-10 mx-auto">
<div class="owl-testimonial owl-carousel owl-theme">
<div class="item">
<div class="slider-info mt-lg-4 mt-3">
<div class="img-circle">
<img src="assets/images/c2.jpg" class="img-fluid rounded" alt="client image">
</div>
<div class="message"><span class="fa fa-quote-left" aria-hidden="true"></span> I got a massage here from Iyonna. She was awesome and paid close attention to the key areas where
I needed that “extra something” that makes you want to go and get the massage in the first place.
She was very polite and friendly. The facility was very nice and the ambiance was soothing to the eye and
ear. I would definitely recommend Hot stone massage to anyone wanting to get a therapeutic massage as it has
helped me so much.</div>
<div class="name">- Sargun Kaur</div>
</div>
</div>
<div class="item">
<div class="slider-info mt-lg-4 mt-3">
<div class="img-circle">
<img src="assets/images/c1.jpg" class="img-fluid rounded" alt="client image">
</div>
<div class="message"><span class="fa fa-quote-left" aria-hidden="true"></span> Enjoyed an amazing day of services today. Have an 80 minute
deep tissue massage with hot stones? An hour favial treatment and a mani and pedi. The workers were
all so very happy and welcoming and my nails look flawless! Rescheduled for next week!</div>
<div class="name">- Krishna Kaul</div>
</div>
</div>
<div class="item">
<div class="slider-info mt-lg-4 mt-3">
<div class="img-circle">
<img src="assets/images/c3.jpg" class="img-fluid rounded" alt="client image">
</div>
<div class="message"><span class="fa fa-quote-left" aria-hidden="true"></span> The spa is clean and comfortable. I got a massage, facial and pedicure.
Attendants were corteous, professional and thorough. I would go back and definitely recommend this spa.</div>
<div class="name">- Rohit Saraf</div>
</div>
</div>
<div class="item">
<div class="slider-info mt-lg-4 mt-3">
<div class="img-circle">
<img src="assets/images/c4.jpg" class="img-fluid rounded" alt="client image">
</div>
<div class="message"><span class="fa fa-quote-left" aria-hidden="true"></span> Have been a client for several years now. Their new location is over in the East Banglore.
Laura gives the best spa therapy & pedicures I have ever had. If you are interested in a really good
massage request Aastha. Both of these ladies are EXCELLENT in their job fields and make
you feel right at home! A day at Sparadise is little vacation!</div>
<div class="name">- Komal Pandey</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--//testimonials-->
<!-- footer-66 -->
<footer class="w3l-footer-66">
<section class="footer-inner-main">
<div class="footer-hny-grids py-5">
<div class="container py-lg-4">
<div class="text-txt">
<div class="right-side">
<div class="row sub-columns">
<div class="col-lg-4 col-md-6 sub-one-left pr-lg-4">
<h3 class="hny-title two mb-3">About Us</h3>
<a class="navbar-brand" href="#index.html">
<img src="assets\images\logo.png" alt="Your logo" title="Your logo" style="height:35px;" />
</a>
<p class="pr-lg-5">Nowadays, people completely forget to take care of their wellness. But The Sparadise
is here to remind you that the self-care and peace of your mind matter and spa and salon therapies
at The Sparadise will surely make you peaceful to face this chaotic world. </p>
<div class="columns-2">
<ul class="social">
<li><a href="#facebook"><span class="fa fa-facebook"
aria-hidden="true"></span></a>
</li>
<li><a href="#linkedin"><span class="fa fa-linkedin"
aria-hidden="true"></span></a>
</li>
<li><a href="#twitter"><span class="fa fa-twitter"
aria-hidden="true"></span></a>
</li>
<li><a href="#google"><span class="fa fa-google-plus"
aria-hidden="true"></span></a>
</li>
</ul>
</div>
</div>
<div class="col-lg-5 col-md-6 sub-one-left mid-footer-gd">
<div class="sub-two-right">
<h6>Quick Links</h6>
<ul>
<li><a href="index.html"><span
class="fa fa-angle-double-right mr-2"></span>Home</a>
</li>
<li><a href="about.html"><span
class="fa fa-angle-double-right mr-2"></span>About</a>
</li>
<li><a href="services.html"><span
class="fa fa-angle-double-right mr-2"></span>Services</a></li>
<li><a href="contact.html"><span
class="fa fa-angle-double-right mr-2"></span>Contact</a></li>
</ul>
</div>
<div class="sub-two-right">
<h6>Therapies</h6>
<ul>
<li><a href="#"><span class="fa fa-angle-double-right mr-2"></span>Salt
Therapy</a>
</li>
<li><a href="#"><span class="fa fa-angle-double-right mr-2"></span>Hydro
Therapy</a>
</li>
<li><a href="#"><span
class="fa fa-angle-double-right mr-2"></span>Reflexology</a>
</li>
<li><a href="#"><span class="fa fa-angle-double-right mr-2"></span>Aroma
Therapy</a>
</li>
</ul>
</div>
<div class="sub-two-right">
<h6>Categories</h6>
<ul>
<li><a href="#"><span class="fa fa-angle-double-right mr-2"></span>Stone
Massage</a></li>
<li><a href="#"><span
class="fa fa-angle-double-right mr-2"></span>Waxing</a>
</li>
<li><a href="#support"><span
class="fa fa-angle-double-right mr-2"></span>Stretch Massage</a>
</li>
<li><a href="#terms"><span class="fa fa-angle-double-right mr-2"></span>Body
Treatments</a>
</li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6 sub-one-left">
<h6>Instagram</h6>
<div class="footer-img-grids">
<div class="gd-img-ft">
<a class="" href="#">
<img class="rounded img-fluid img-responsive" src="assets/images/ab.jpg"
alt="image">
</a>
</div>
<div class="gd-img-ft">
<a class="" href="#">
<img class="rounded img-fluid img-responsive"
src="assets/images/ab1.jpg" alt="image">
</a>
</div>
<div class="gd-img-ft">
<a class="" href="#">
<img class="rounded img-fluid img-responsive"
src="assets/images/ab2.jpg" alt="image">
</a>
</div>
<div class="gd-img-ft">
<a class="" href="#">
<img class="rounded img-fluid img-responsive"
src="assets/images/ab3.jpg" alt="image">
</a>
</div>
<div class="gd-img-ft">
<a class="" href="#">
<img class="rounded img-fluid img-responsive"
src="assets/images/ab4.jpg" alt="image">
</a>
</div>
<div class="gd-img-ft">
<a class="" href="#">
<img class="rounded img-fluid img-responsive"
src="assets/images/ab5.jpg" alt="image">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="below-section">
<div class="container">
<div class="copyright-footer">
<div class="columns text-lg-left">
<p>© 2023 Sparadise. All rights reserved | Designed by Sakshi </p>
</div>
<ul class="columns text-lg-right">
<li><a href="#">Privacy Policy</a>
</li>
<li><a href="about.html">About Us</a>
</li>
<li><a href="contact.html">Contact Us</a>
</li>
</ul>
</div>
</div>
</div>
<!-- copyright -->
<!-- move top -->
<button onclick="topFunction()" id="movetop" title="Go to top">
<span class="fa fa-arrow-up" aria-hidden="true"></span>
</button>
<script>
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () {
scrollFunction()
};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("movetop").style.display = "block";
} else {
document.getElementById("movetop").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<!-- /move top -->
</section>
</footer>
<!--//footer-66 -->
</body>
</html>
<script src="assets/js/jquery-3.3.1.min.js"></script>
<!-- stats -->
<script src="assets/js/jquery.waypoints.min.js"></script>
<script src="assets/js/jquery.countup.js"></script>
<script>
$('.counter').countUp();
</script>
<!-- //stats -->
<script src="assets/js/owl.carousel.js"></script>
<!-- script for banner slider-->
<script>
$(document).ready(function () {
$('.owl-one').owlCarousel({
loop: true,
margin: 0,
nav: false,
responsiveClass: true,
autoplay: true,
autoplayTimeout: 5000,
autoplaySpeed: 1000,
autoplayHoverPause: false,
responsive: {
0: {
items: 1,
nav: false
},
480: {
items: 1,
nav: false
},
667: {
items: 1,
nav: true
},
1000: {
items: 1,
nav: true
}
}
})
})
</script>
<!-- //script -->
<!-- script for owlcarousel -->
<script>
$(document).ready(function () {
$('.owl-testimonial').owlCarousel({
loop: true,
margin: 0,
nav: false,
responsiveClass: true,
autoplay: true,
autoplayTimeout: 5000,
autoplaySpeed: 1000,
autoplayHoverPause: false,
responsive: {
0: {
items: 1,
nav: false
},
480: {
items: 1,
nav: true
},
667: {
items: 1,
nav: true
},
1000: {
items: 1,
nav: true
}
}
})
})
</script>
<!-- script for owlcarousel -->
<script>
$(document).ready(function () {
$('.owl-news').owlCarousel({
stagePadding: 50,
loop: true,
margin: 40,
nav: true,
responsiveClass: true,
autoplay: true,
autoplayTimeout: 5000,
autoplaySpeed: 1000,
autoplayHoverPause: false,
responsive: {
0: {
items: 1,
nav: false
},
480: {
items: 1,
nav: true
},
667: {
items: 2,
nav: true
},
1000: {
items: 3,
nav: true
}
}
})
})