-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·924 lines (831 loc) · 44.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<!--====== Required meta tags ======-->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--====== Title ======-->
<title>Santa Maria - affordable integrative medicine near San Diego</title>
<!--====== Favicon Icon ======-->
<link rel="shortcut icon" href="assets/images/favicon.png" type="image/png">
<!--====== Bootstrap css ======-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!--====== Fontawesome css ======-->
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<!--====== Line Icons css ======-->
<link rel="stylesheet" href="assets/css/LineIcons.css">
<!--====== Animate css ======-->
<link rel="stylesheet" href="assets/css/animate.css">
<!--====== Aos css ======-->
<link rel="stylesheet" href="assets/css/aos.css">
<!--====== Slick css ======-->
<link rel="stylesheet" href="assets/css/slick.css">
<!--====== Default css ======-->
<link rel="stylesheet" href="assets/css/default.css">
<!--====== Style css ======-->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!--====== PRELOADER PART START ======-->
<div class="preloader">
<div class="loader_34">
<div class="ytp-spinner">
<div class="ytp-spinner-container">
<div class="ytp-spinner-rotator">
<div class="ytp-spinner-left">
<div class="ytp-spinner-circle"></div>
</div>
<div class="ytp-spinner-right">
<div class="ytp-spinner-circle"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--====== PRELOADER ENDS START ======-->
<!--====== HEADER PART START ======-->
<header id="home" class="header-area pt-100">
<div class="shape header-shape-one">
<img src="assets/images/banner/shape/shape-1.png" alt="shape">
</div> <!-- header shape one -->
<div class="shape header-shape-tow animation-one">
<img src="assets/images/banner/shape/shape-2.png" alt="shape">
</div> <!-- header shape tow -->
<div class="shape header-shape-three animation-one">
<img src="assets/images/banner/shape/shape-3.png" alt="shape">
</div> <!-- header shape three -->
<div class="shape header-shape-fore">
<img src="assets/images/banner/shape/shape-4.png" alt="shape">
</div> <!-- header shape three -->
<div class="navigation-bar">
<div class="container">
<div class="row">
<div class="col-lg-12">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="#">
<img src="assets/images/logo.svg" alt="Logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul id="nav" class="navbar-nav ml-auto">
<li class="nav-item">
<a class="page-scroll" href="#">Health Programs</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#">Treatments</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#">Conditions</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#">Prices</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#">Accommodation</a>
</li>
</ul> <!-- navbar nav -->
</div>
<div class="navbar-btn ml-20 d-none d-sm-block">
<a class="main-btn" href="tel:+18588002094"><i class="lni-phone"></i> +1 858 800 20 94</a>
</div>
</nav> <!-- navbar -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</div> <!-- navigation bar -->
<div class="header-banner d-flex align-items-center">
<div class="container">
<div class="row">
<div class="col-xl-8 col-lg-9 col-sm-10">
<div class="banner-content">
<h4 class="sub-title wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="1s">Chronic illnesses can be treated</h4>
<h1 class="banner-title mt-10 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="2s"><span>At Santa Maria Center,</span> we can help you achieve this.</h1>
<p>We offer more than symptomatic treatment – we restore your health.</p>
<a class="banner-contact mt-25 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="2.3s" rel="nofollow" href="#contact-form">Get Free Consultation</a>
</div> <!-- banner content -->
</div>
</div> <!-- row -->
</div> <!-- container -->
<div class="banner-image bg_cover" style="background-image: url(assets/images/banner/003.jpg); opacity:0.4;"></div>
</div> <!-- header banner -->
</header>
<!--====== HEADER PART ENDS ======-->
<!--====== ABOUT PART START ======-->
<section id="about" class="about-area pt-80 pb-130">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="about-image mt-50 clearfix">
<div class="single-image float-left">
<img src="assets/images/about/about-1.JPG" alt="About">
</div> <!-- single image -->
<div data-aos="fade-right" class="about-btn">
<a class="main-btn" href="#"><span>7</span> Years Experience</a>
</div>
<div class="single-image image-tow float-right">
<img src="assets/images/about/about-2.JPG" alt="About">
</div> <!-- single image -->
</div> <!-- about image -->
</div>
<div class="col-lg-6">
<div class="about-content mt-45">
<h4 class="about-welcome">About Us </h4>
<h3 class="about-title mt-10">Reasons to choose</h3>
<p class="mt-25">
We treat the cause rather the symptoms
<br>
We combine evidence-based Western medicine and proven traditional methods.
</p>
<ul class="list">
<li>
We acknowledge that our body has a vast potential for self-healing
</li>
<li>
In modern society, that potential is often hampered by the circumstances of our daily life
</li>
<li>
Those circumstances include chronic stress, intoxication, and chronic pathogenic infections
</li>
<li>
Chronic stress usually leads to chronic inflammation, which overburdens the immune system
</li>
<li>
The immune system can no longer effectively resist parasites
</li>
<li>
In some cases, the immune system starts to attack itself, resulting in autoimmune conditions
</li>
</ul>
<a class="main-btn mt-25" href="#">learn more</a>
</div> <!-- about content -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</section>
<!--====== ABOUT PART ENDS ======-->
<!--====== SERVICES PART START ======-->
<section id="service" class="services-area pt-125 pb-130 gray-bg">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="section-title text-center pb-20">
<h5 class="sub-title mb-15">Our Services</h5>
<h2 class="title">How do we guide you on the path of self-healing</h2>
</div> <!-- section title -->
</div>
</div> <!-- row -->
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6 col-sm-8">
<div class="single-services text-center mt-30 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.4s">
<div class="services-icon">
<i class="lni-magnifier"></i>
</div>
<div class="services-content mt-15">
<h4 class="services-title">Diagnosis</h4>
<p class="mt-20">We carry out precise diagnostics to determine the cause of your illness</p>
</div>
</div> <!-- single services -->
</div>
<div class="col-lg-4 col-md-6 col-sm-8">
<div class="single-services text-center mt-30 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.8s">
<div class="services-icon">
<i class="lni-blackboard"></i>
</div>
<div class="services-content mt-15">
<h4 class="services-title">Psychology</h4>
<p class="mt-20">We help you calm your mind and achieve tranquility</p>
</div>
</div> <!-- single services -->
</div>
<div class="col-lg-4 col-md-6 col-sm-8">
<div class="single-services text-center mt-30 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.2s">
<div class="services-icon">
<i class="lni-syringe"></i>
</div>
<div class="services-content mt-15">
<h4 class="services-title">Blood Purification</h4>
<p class="mt-20">We cleanse your blood of pathogens and toxins</p>
</div>
</div> <!-- single services -->
</div>
<div class="col-lg-4 col-md-6 col-sm-8">
<div class="single-services text-center mt-30 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.4s">
<div class="services-icon">
<i class="lni-fresh-juice"></i>
</div>
<div class="services-content mt-15">
<h4 class="services-title">Detox</h4>
<p class="mt-20">We perform a powerful detox</p>
</div>
</div> <!-- single services -->
</div>
<div class="col-lg-4 col-md-6 col-sm-8">
<div class="single-services text-center mt-30 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.8s">
<div class="services-icon">
<i class="lni-microscope"></i>
</div>
<div class="services-content mt-15">
<h4 class="services-title">Cellular procedures</h4>
<p class="mt-20">We recharge your cells with advanced vibration and energy methods</p>
</div>
</div> <!-- single services -->
</div>
<div class="col-lg-4 col-md-6 col-sm-8">
<div class="single-services text-center mt-30 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.2s">
<div class="services-icon">
<i class="lni-pulse"></i>
</div>
<div class="services-content mt-15">
<h4 class="services-title">Remove inflammation</h4>
<p class="mt-20">We relieve you of chronic inflammation</p>
</div>
</div> <!-- single services -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</section>
<!--====== SERVICES PART ENDS ======-->
<!--====== WE HELP WITH PART START ======-->
<section id="service" class="services-area pt-125 pb-130">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="section-title text-center pb-20">
<h5 class="sub-title mb-15">Indications for treatment</h5>
<h2 class="title">We help with:</h2>
</div> <!-- section title -->
</div>
</div> <!-- row -->
<div class="row justify-content-center">
<div class="col-lg-6">
<ul class="list">
<li>
Metabolism disorders: metabolic syndrome, pre-diabetic condition, fat liver, kidney issues
</li>
<li>
Autoimmune disorders
</li>
<li>
Women's health issues: chronic gynecological disorders, menopause-related conditions, hormonal disbalance
</li>
<li>
Chronic fatigue and brain fog
</li>
<li>
Mental health issues: anxiety, depression, sleep disorders, addiction, PTSD (10 — 14 days)
</li>
<li>
Chronic Lyme disease
</li>
<li>
Men's health issues: prostate enlargement, erectile dysfunction, male infertility
</li>
</ul>
</div>
</div> <!-- row -->
</div> <!-- container -->
</section>
<!--====== WE HELP WITH PART ENDS ======-->
<!--====== WHAT DO WE OFFER PART START ======-->
<section id="project" class="project-area pt-125 pb-130 gray-bg">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="section-title text-center pb-50">
<h5 class="sub-title mb-15">Our Service</h5>
<h2 class="title">What do we offer?</h2>
</div> <!-- section title -->
</div>
</div> <!-- row -->
</div>
<div class="container-fluid">
<div class="row project-active">
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/offer/offer-1.jpeg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Ocean front all-inclusive Retreat for Integrative Medicine</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/offer/offer-2.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Individual healing programs guided by medical doctors</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/offer/offer-3.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Organic meals prepared with freshest and finest ingredients, carefully selected by#nbsp;our chef</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/offer/offer-4.jpeg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Free accommodations and access to#nbsp;all amenities</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/offer/offer-5.jpeg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Multi-facet science-based diagnostics: blood microscopy, lab tests, ultrasound scans, and microbiome sequencing</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/offer/offer-6.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">A comprehensive set of over 80 physiological, medical, spa, and beauty procedures</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/offer/offer-7.jpeg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Herbal therapy with unique recipes, created by#nbsp;an#nbsp;endogenous herbalists</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/offer/offer-8.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">A#nbsp;selection of#nbsp;over 200 Latin-American medicinal plants</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/offer/offer-9.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">An individual nutrition plan from a nutritionist doctor</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/offer/offer-10.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Traditional plant-based medicine treatments, guided by a doctor</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/offer/offer-11.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Fitness, Pilates, and Zumba for any level from professional instructors</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/offer/offer-12.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Health & longevity education program (lectures, masterclasses, selected podcasts)</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--====== WHAT DO WE OFFER PART ENDS ======-->
<!--====== Expected results PART START ======-->
<section id="service" class="services-area pt-125 pb-130">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="section-title text-center pb-20">
<!-- <h5 class="sub-title mb-15">Indications for treatment</h5> -->
<h2 class="title">Expected results</h2>
</div> <!-- section title -->
</div>
</div> <!-- row -->
<div class="row justify-content-center">
<div class="col-lg-6">
<ul class="list">
<li>
Deep detox of the cardiovascular, lymphatic, and gastrointestinal systems
</li>
<li>
Balanced immune and hormonal systems
</li>
<li>
True rejuvenation and a younger look
</li>
<li>
A lifestyle transformation for healthy longevity
</li>
<li>
A life free from chronic illnesses — we prevent them before they appear
</li>
</ul>
</div>
</div> <!-- row -->
</div> <!-- container -->
</section>
<!--====== Expected results PART ENDS ======-->
<!--====== After a stay START ======-->
<section id="afte" class="about-area pt-80 pb-130 gray-bg">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="about-content mt-45">
<!-- <h4 class="about-welcome">About Us </h4> -->
<h3 class="about-title mt-10">After a stay at our clinic, you will notice the following changes</h3>
<!-- <p class="mt-25">
We treat the cause rather the symptoms
<br>
We combine evidence-based Western medicine and proven traditional methods.
</p> -->
<ul class="list">
<li>
Complete energy restoration
</li>
<li>
Fatigue is gone for good
</li>
<li>
Sleep is back to normal
</li>
<li>
Your energy will be back. Years back
</li>
<li>
Substantial chronic pain reduction
</li>
<li>
Anxiety is gone for good
</li>
<li>
A desire to smile again
</li>
</ul>
<a class="main-btn mt-25" href="#">learn more</a>
</div> <!-- about content -->
</div>
<div class="col-lg-6">
<div class="about-image mt-50 clearfix">
<div class="single-image float-left">
<img src="assets/images/after/after-1.jpeg" alt="After stay">
</div> <!-- single image -->
<div data-aos="fade-right" class="about-btn">
<a class="main-btn" href="#"><span>7</span> Years Experience</a>
</div>
<div class="single-image image-tow float-right">
<img src="assets/images/after/after-2.jpeg" alt="After stay">
</div> <!-- single image -->
</div> <!-- about image -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</section>
<!--====== After a stay End ======-->
<!--====== Different PART START ======-->
<section id="diff" class="services-area pt-125 pb-130" style="position: relative;">
<div class="diff-bg"><img src="assets/images/diff/diff-bg.jpg" alt="What makes us different bg"></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="section-title text-center pb-20">
<!-- <h5 class="sub-title mb-15">Indications for treatment</h5> -->
<h2 class="title">What makes us different?</h2>
</div> <!-- section title -->
</div>
</div> <!-- row -->
<div class="row justify-content-center">
<div class="col-lg-6">
<ul class="list">
<li>
We use a systemic functional approach. No disease is ever located in one organ or body part. We achieve a lasting effect and true recovery by treating the person as a whole. </li>
<li>
We acknowledge that there is more to a person than the physical body. A calm state of mind and spiritual well-being are essential to true healing.
</li>
<li>
We use methods of modern medicine when necessary. This makes us an integrative medicine clinic.
</li>
<li>
Our chief physician is an accomplished Ph.D. scientist with a long record in drug discovery. When we use modern medical methods, we know what we are doing.
</li>
<li>
Modern medicine is not 100% rooted in science. We use only evidence-based scientific methods.
</li>
<li>
Our mission is to cure our patients. We have no affiliation with pharmaceutical companies and have no incentive to prolong the treatment length.
</li>
<li>
Our price tag is very moderate when compared to clinics that offer similar services.
</li>
</ul>
</div>
</div> <!-- row -->
</div> <!-- container -->
</section>
<!--====== Different PART ENDS ======-->
<!--====== TEAM PART START ======-->
<section id="team" class="team-area pt-125 pb-130 gray-bg">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="section-title text-center pb-20">
<h5 class="sub-title mb-15">Meet The Team</h5>
<h2 class="title">Our Doctors</h2>
</div> <!-- section title -->
</div>
</div> <!-- row -->
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="single-team text-center mt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="0.4s">
<div class="team-image">
<img src="assets/images/team/Yuri.jpg" alt="Team">
</div>
<div class="team-content">
<h4 class="team-name"><a href="#">Yuri Nikolsky</a></h4>
<span class="sub-title">Ph.D.</span>
<ul class="social mt-25">
<li><a href="#"><i class="lni-facebook-filled"></i></a></li>
<li><a href="#"><i class="lni-twitter-original"></i></a></li>
<li><a href="#"><i class="lni-linkedin-original"></i></a></li>
</ul>
</div>
</div> <!-- single team -->
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="single-team text-center mt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="0.8s">
<div class="team-image">
<img src="assets/images/team/Mariya.jpg" alt="Team">
</div>
<div class="team-content">
<h4 class="team-name"><a href="#">Mariya Kurilina</a></h4>
<span class="sub-title">Psy.D.</span>
<ul class="social mt-25">
<li><a href="#"><i class="lni-facebook-filled"></i></a></li>
<li><a href="#"><i class="lni-twitter-original"></i></a></li>
<li><a href="#"><i class="lni-linkedin-original"></i></a></li>
</ul>
</div>
</div> <!-- single team -->
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="single-team text-center mt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="1.2s">
<div class="team-image">
<img src="assets/images/team/Dr_Larisa.jpg" alt="Team">
</div>
<div class="team-content">
<h4 class="team-name"><a href="#">Larisa Petrenko</a></h4>
<span class="sub-title">Ph.D.</span>
<ul class="social mt-25">
<li><a href="#"><i class="lni-facebook-filled"></i></a></li>
<li><a href="#"><i class="lni-twitter-original"></i></a></li>
<li><a href="#"><i class="lni-linkedin-original"></i></a></li>
</ul>
</div>
</div> <!-- single team -->
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="single-team text-center mt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="1.6s">
<div class="team-image">
<img src="assets/images/team/German.jpg" alt="Team">
</div>
<div class="team-content">
<h4 class="team-name"><a href="#">Herman Elizarraras</a></h4>
<!-- <span class="sub-title">Intern</span> -->
<ul class="social mt-25">
<li><a href="#"><i class="lni-facebook-filled"></i></a></li>
<li><a href="#"><i class="lni-twitter-original"></i></a></li>
<li><a href="#"><i class="lni-linkedin-original"></i></a></li>
</ul>
</div>
</div> <!-- single team -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</section>
<!--====== TEAM PART ENDS ======-->
<!--====== TESTIMONIAL PART START ======-->
<section id="testimonial" class="testimonial-area pt-130 pb-130">
<div class="shape shape-one">
<img src="assets/images/testimonial/shape.png" alt="testimonial">
</div>
<div class="shape shape-tow">
<img src="assets/images/testimonial/shape.png" alt="testimonial">
</div>
<div class="shape shape-three">
<img src="assets/images/testimonial/shape.png" alt="testimonial">
</div>
<div class="container">
<div class="testimonial-bg bg_cover pt-80 pb-80" style="background-image: url(assets/images/testimonial/testimonial-bg.jpg)">
<div class="row">
<div class="col-xl-4 offset-xl-7 col-lg-5 offset-lg-6 col-md-8 offset-md-2 col-sm-10 offset-sm-1">
<div class="testimonial-active">
<div class="single-testimonial text-center">
<div class="testimonial-image">
<img src="assets/images/testimonial/t-1.jpg" alt="Testimonial">
<div class="quota">
<i class="lni-quotation"></i>
</div>
</div>
<div class="testimonial-content mt-20">
<p>Lorem ipsum dolor sit amet, ectetur adipiscing elit. Phasellus vel erat ces, commodo lectus eu, finibus diam. m ipsum dolor sit amet, ectetur.</p>
<h5 class="testimonial-name mt-15">Fajar</h5>
<span class="sub-title">Random Customer</span>
</div>
</div> <!-- single-testimonial -->
<div class="single-testimonial text-center">
<div class="testimonial-image">
<img src="assets/images/testimonial/t-2.jpg" alt="Testimonial">
<div class="quota">
<i class="lni-quotation"></i>
</div>
</div>
<div class="testimonial-content mt-20">
<p>Lorem ipsum dolor sit amet, ectetur adipiscing elit. Phasellus vel erat ces, commodo lectus eu, finibus diam. m ipsum dolor sit amet, ectetur.</p>
<h5 class="testimonial-name mt-15">Alina</h5>
<span class="sub-title">Tesla Motors</span>
</div>
</div> <!-- single-testimonial -->
<div class="single-testimonial text-center">
<div class="testimonial-image">
<img src="assets/images/testimonial/t-3.jpg" alt="Testimonial">
<div class="quota">
<i class="lni-quotation"></i>
</div>
</div>
<div class="testimonial-content mt-20">
<p>Lorem ipsum dolor sit amet, ectetur adipiscing elit. Phasellus vel erat ces, commodo lectus eu, finibus diam. m ipsum dolor sit amet, ectetur.</p>
<h5 class="testimonial-name mt-15">Celina</h5>
<span class="sub-title">CEO, Alo</span>
</div>
</div> <!-- single-testimonial -->
</div> <!-- testimonial active -->
</div>
</div> <!-- row -->
</div> <!-- testimonial bg -->
</div> <!-- container -->
</section>
<!--====== TESTIMONIAL PART ENDS ======-->
<!--====== MAP PART START ======-->
<section id="map" class="map-area">
<div class="mapouter">
<div class="gmap_canvas">
<iframe id="gmap_canvas" src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3376.896559282138!2d-116.909998!3d32.180064!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80d8d96750dda04b%3A0x5d0381630920db89!2sSanta%20Maria%20Center%20for%20Integrative%20Medicine!5e0!3m2!1sen!2sus!4v1674844093321!5m2!1sen!2sus" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
</div>
</div>
<div class="map-bg bg_cover d-none d-lg-block" style="background-image: url(assets/images/map/map-bg.jpg)"></div>
</section>
<!--====== MAP PART ENDS ======-->
<!--====== FOOTER PART START ======-->
<footer id="footer" class="footer-area">
<div class="footer-widget pt-80 pb-130">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-8">
<div class="footer-logo mt-50">
<a href="#">
<img src="assets/images/logo.svg" alt="Logo">
</a>
<ul class="footer-info">
<li>
<div class="single-info">
<div class="info-icon">
<i class="lni-phone-handset"></i>
</div>
<div class="info-content">
<p>+1 858 800 20 94</p>
</div>
</div> <!-- single info -->
</li>
<li>
<div class="single-info">
<div class="info-icon">
<i class="lni-envelope"></i>
</div>
<div class="info-content">
<p>[email protected]</p>
</div>
</div> <!-- single info -->
</li>
<li>
<div class="single-info">
<div class="info-icon">
<i class="lni-map"></i>
</div>
<div class="info-content">
<p>Libre Tijuana-Ensenada KM.52 Calle Pescadores 823 El Campito, 22710 Rosarito, B.C., Mexico</p>
</div>
</div> <!-- single info -->
</li>
</ul>
<ul class="footer-social mt-20">
<li><a href="#"><i class="lni-facebook-filled"></i></a></li>
<li><a href="#"><i class="lni-twitter-original"></i></a></li>
<li><a href="#"><i class="lni-youtube"></i></a></li>
<li><a href="#"><i class="lni-instagram"></i></a></li>
</ul>
</div> <!-- footer logo -->
</div>
<div class="col-lg-3 col-md-4 col-sm-6">
<div class="footer-link mt-45">
<div class="f-title">
<h4 class="title">Essential Links</h4>
</div>
<ul class="mt-15">
<li><a href="#">About</a></li>
<li><a href="#">Testemonials</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6">
<div class="footer-link mt-45">
<div class="f-title">
<h4 class="title">Services</h4>
</div>
<ul class="mt-15">
<li><a href="#">Health Programs</a></li>
<li><a href="#">Treatments</a></li>
<li><a href="#">SPA</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-5 col-sm-8">
</div>
</div> <!-- row -->
</div> <!-- container -->
</div> <!-- footer widget -->
<div class="copyright-area">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="copyright text-center">
<p>Santa Maria 2023</a></p>
</div> <!-- copyright -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</div> <!-- copyright-area -->
</footer>
<!--====== FOOTER PART ENDS ======-->
<!--====== BACK TO TOP PART START ======-->
<a href="#" class="back-to-top"><i class="lni-chevron-up"></i></a>
<!--====== BACK TO TOP PART ENDS ======-->
<!-- row -->
<!--====== jquery js ======-->
<script src="assets/js/vendor/modernizr-3.6.0.min.js"></script>
<script src="assets/js/vendor/jquery-1.12.4.min.js"></script>
<!--====== Bootstrap js ======-->
<script src="assets/js/bootstrap.min.js"></script>
<!--====== WOW js ======-->
<script src="assets/js/wow.min.js"></script>
<!--====== Slick js ======-->
<script src="assets/js/slick.min.js"></script>
<!--====== Scrolling Nav js ======-->
<script src="assets/js/scrolling-nav.js"></script>
<script src="assets/js/jquery.easing.min.js"></script>
<!--====== Aos js ======-->
<script src="assets/js/aos.js"></script>
<!--====== Main js ======-->
<script src="assets/js/main.js"></script>
</body>
</html>