-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.php
1504 lines (1316 loc) · 94.9 KB
/
services.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Title -->
<title>Services | Massage, Chiro, Physio & Acupuncture in Toronto | Nexus</title>
<meta name="Description" content="Nexus Massage & Rehab is a multidisciplinary clinic that offers RMT, chiropractic, physiotherapy & acupuncture services at Yonge & Eglinton. Book an appointment!">
<meta name="keywords" content="Best RMT, chiropractic adjustments, physiotherapy exercises, acupuncture, best results, effective treatments, back ache, knee pain, fast relief now, headaches, neck pain, sore, body pain, muscle pain, muscle ache, rehab, migraines, chronic back pain, muscle spasm, posture correction, posture, desk posture, ergonomic assessment">
<!-- Common Header -->
<?php include('includes/common-header.php') ?>
<!-- End Common Header -->
<style>
h3.LessMoreCollapse.collapsed:before
{
content:'More ' ;
}
h3.LessMoreCollapse:before
{
content:'Less ' ;
}
div.expand-card
{
padding:0rem;
}
div.scrolltag
{
display: block;
position: relative;
top: -75px;
visibility: hidden;
}
</style>
</head>
<body>
<!-- ========== HEADER ========== -->
<?php include('includes/nav.php') ?>
<!-- ========== END HEADER ========== -->
<!-- ========== MAIN ========== -->
<main id="content" role="main">
<!-- Hero Section -->
<div class="dzsparallaxer auto-init height-is-based-on-content use-loading mode-scroll"
data-options='{direction: "normal"}'>
<!-- Apply your Parallax background image here -->
<div class="divimage dzsparallaxer--target" style="height: 120%; background-image: url(https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/hero/services-legs.jpg);"></div>
<div class="animated bounceIn">
<!-- Content -->
<div class="container position-relative u-space-5-top u-space-3-bottom z-index-2">
<div class="w-lg-80 text-center mx-auto">
<h1 class="display-3 font-size-48--md-down text-white font-weight-bold">SERVICES</h1>
<div class="u-space-1-top">
<a class="btn btn-white u-btn-white u-btn-wide transition-3d-hover" href="https://nexusclinic.clinicsense.com/book" target="blank" onclick="handleClick('bannerBtn');">Book Online<span class="fa fa-angle-right font-size-13 ml-2"></span></a>
</div>
</div>
</div>
<!-- End Content -->
</div>
</div>
<!-- End Hero Section -->
<!-- Shopping Cart Modal Window -->
<div id="treatmentQuizModal" class="js-modal-window u-modal-window" style="width:60%;">
<div class="card">
<!-- Header -->
<header class="card-header bg-light py-3 px-5">
<div class="d-flex justify-content-between align-items-center">
<h3 class="h6 mb-0">Nexus Massage & Rehab - Quiz!</h3>
<button type="button" class="close" aria-label="Close" onclick="Custombox.modal.close();">
<span aria-hidden="true">×</span>
</button>
</div>
</header>
<!-- End Header -->
<!-- Body -->
<div id='inline-embed-iframe' class='inline-embed-responsive' style='border-radius:5px; overflow:hidden;'><iframe src='https://content.leadquizzes.com/lp/ALw9cXng0w?embed=1' frameborder='0' style='width:100%; float:left;'></iframe></div>
<!-- End Body -->
</div>
</div>
<!-- End Shopping Cart Modal Window -->
<!-- Service Item Start -->
<div class="scrolltag" id="rmt"></div>
<div class="position-relative">
<div class="container u-space-2">
<div class="row align-items-center">
<div class="col-lg-5 mb-9 mb-lg-0">
<div class="pr-lg-4 mb-7">
<h2 class="text-primary">
<span class="font-weight-bold">Registered Massage Therapy</span>
</h2>
<p>Massage therapy can treat both acute and chronic conditions, optimizes health and well-being by acting on the muscular, nervous and circulatory systems. Treatments can help reduce or eliminate pain, improve joint mobility, circulation and reduce muscular tension.</p>
<a href="service/massage"><button type="button" class="btn btn-sm btn-block u-btn-primary--air u-btn-primary transition-3d-hover">Learn about Massage Therapy<span class="fa fa-angle-right ml-2"></span></button></a>
<br>
<a href="https://nexusclinic.clinicsense.com/book" target="blank" onclick="handleClick('bookServiceBtn');"><button type="button" class="btn btn-sm btn-block u-btn-danger--air u-btn-danger transition-3d-hover">Book Registered Massage Therapist<span class="fa fa-angle-right ml-2"></span></button></a>
</div>
</div>
<div class="col-lg-7 position-relative">
<div id="video" class="u-video-player">
<img class="img-fluid u-video-player__preview responsively-lazy" style="border: #636569 1px solid;" src="https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-massage.jpg" data-srcset="https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-massage.jpg 500w, https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-massage.jpg 1000w, https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/lrg/services-massage.jpg 1500w" sizes="(min-width: 993px) 1500px,(min-width: 768px) and (max-width: 992px) 1000px, (max-width: 767px) 500px" alt="Deep Tissue - Registered Massage Therapist - Neck and Shoulders">
<div class="embed-responsive embed-responsive-16by9">
<iframe id="youTubeVideo" class="embed-responsive-item"
data-src="//www.youtube.com/embed/0qisGSwZym4?autoplay=1&showinfo=0&rel=0">
</iframe>
</div>
</div>
<figure class="w-100 u-content-centered">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1109.8 797.1" style="enable-background:new 0 0 1109.8 797.1;" xml:space="preserve">
<path class="u-fill-primary" opacity=".1" d="M105.1,267.1C35.5,331.5-3.5,423,0.3,517.7c5.8,145.3,110.7,314.2,588,273.1c753-64.7,481.3-358.3,440.4-398.3
c-4-3.9-7.9-7.9-11.7-12L761.9,104.8C639.4-27.6,432.5-35.6,299.9,87L105.1,267.1z"/>
</svg>
</figure>
</div>
</div>
</div>
</div>
<!-- Service Item End -->
<!-- Service Item Start -->
<div class="scrolltag" id="hotstone"></div>
<div class="position-relative">
<div class="container u-space-2">
<div class="row align-items-center">
<div class="col-lg-5 mb-9 mb-lg-0">
<div class="pr-lg-4 mb-7">
<h2 class="text-primary">
<span class="font-weight-bold">Hot Stone Massage</span>
</h2>
<p>Hot stone massage therapy promotes deeper muscle relaxation with the use of heated stones to massage the body, as well as being placed on key points of the spine. It helps increase blood flow and decreases muscle tension and pain.</p>
<a href="service/massage"><button type="button" class="btn btn-sm btn-block u-btn-primary--air u-btn-primary transition-3d-hover">Learn about Massage Therapy<span class="fa fa-angle-right ml-2"></span></button></a>
<br>
<a href="https://nexusclinic.clinicsense.com/book" target="blank" target="blank" onclick="handleClick('bookServiceBtn');"><button type="button" class="btn btn-sm btn-block u-btn-danger--air u-btn-danger transition-3d-hover">Book Registered Massage Therapist<span class="fa fa-angle-right ml-2"></span></button></a>
</div>
</div>
<div class="col-lg-7 position-relative">
<div id="video" class="u-video-player">
<img class="img-fluid u-video-player__preview responsively-lazy" style="border: #636569 1px solid;" src="https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-hot_stone.jpg" data-srcset="https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-hot_stone.jpg 500w, https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-hot_stone.jpg 1000w, https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/lrg/services-hot_stone.jpg 1500w" sizes="(min-width: 993px) 1500px,(min-width: 768px) and (max-width: 992px) 1000px, (max-width: 767px) 500px" alt="Hot Stone - Massage - Relaxation and Tension Release">
<div class="embed-responsive embed-responsive-16by9">
<iframe id="youTubeVideo" class="embed-responsive-item"
data-src="//www.youtube.com/embed/0qisGSwZym4?autoplay=1&showinfo=0&rel=0">
</iframe>
</div>
</div>
<figure class="w-100 u-content-centered">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1109.8 797.1" style="enable-background:new 0 0 1109.8 797.1;" xml:space="preserve">
<path class="u-fill-primary" opacity=".1" d="M105.1,267.1C35.5,331.5-3.5,423,0.3,517.7c5.8,145.3,110.7,314.2,588,273.1c753-64.7,481.3-358.3,440.4-398.3
c-4-3.9-7.9-7.9-11.7-12L761.9,104.8C639.4-27.6,432.5-35.6,299.9,87L105.1,267.1z"/>
</svg>
</figure>
</div>
</div>
</div>
</div>
<!-- Service Item End -->
<!-- Service Item Start -->
<div class="scrolltag" id="chiropractic"></div>
<div class="position-relative">
<div class="container u-space-2">
<div class="row align-items-center">
<div class="col-lg-5 mb-9 mb-lg-0">
<div class="pr-lg-4 mb-7">
<h2 class="text-primary">
<span class="font-weight-bold">Chiropractic</span>
</h2>
<p>Chiropractic care improves joint, neural and muscular health by assessing and targeting the root problem through manual adjustments and mobilizations. It is most effective for treating neuro-muscular injuries, reducing postural tension, restoring joint range of motion and decreasing pain.</p>
<a href="service/chiropractic"><button type="button" class="btn btn-sm btn-block u-btn-primary--air u-btn-primary transition-3d-hover">Learn about Chiropractic<span class="fa fa-angle-right ml-2"></span></button></a>
<br>
<a href="https://nexusclinic.clinicsense.com/book" target="blank" target="blank" onclick="handleClick('bookServiceBtn');"><button type="button" class="btn btn-sm btn-block u-btn-danger--air u-btn-danger transition-3d-hover">Book Chiropractor<span class="fa fa-angle-right ml-2"></span></button></a>
</div>
</div>
<div class="col-lg-7 position-relative">
<div id="video" class="u-video-player">
<img class="img-fluid u-video-player__preview responsively-lazy" style="border: #636569 1px solid;" src="https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-chiro.jpg" data-srcset="https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-chiro.jpg 500w, https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-chiro.jpg 1000w, https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/lrg/services-chiro.jpg 1500w" sizes="(min-width: 993px) 1500px,(min-width: 768px) and (max-width: 992px) 1000px, (max-width: 767px) 500px" alt="Chiropractic Treatment - Back and Shoulders - Adjustment">
<div class="embed-responsive embed-responsive-16by9">
<iframe id="youTubeVideo" class="embed-responsive-item"
data-src="//www.youtube.com/embed/0qisGSwZym4?autoplay=1&showinfo=0&rel=0">
</iframe>
</div>
</div>
<figure class="w-100 u-content-centered">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1109.8 797.1" style="enable-background:new 0 0 1109.8 797.1;" xml:space="preserve">
<path class="u-fill-primary" opacity=".1" d="M105.1,267.1C35.5,331.5-3.5,423,0.3,517.7c5.8,145.3,110.7,314.2,588,273.1c753-64.7,481.3-358.3,440.4-398.3
c-4-3.9-7.9-7.9-11.7-12L761.9,104.8C639.4-27.6,432.5-35.6,299.9,87L105.1,267.1z"/>
</svg>
</figure>
</div>
</div>
</div>
</div>
<!-- Service Item End -->
<!-- Service Item Start -->
<div class="scrolltag" id="physiotherapy"></div>
<div class="position-relative">
<div class="container u-space-2">
<div class="row align-items-center">
<div class="col-lg-5 mb-9 mb-lg-0">
<div class="pr-lg-4 mb-7">
<h2 class="text-primary">
<span class="font-weight-bold">Physiotherapy</span>
</h2>
<p>Physiotherapy works with people to maximize their ability to move and function in their daily activities. It improves muscular and neural health by assessing and targeting the root problem through manual treatment and exercises. Physiotherapy is effective in increasing strength and co-ordination, improving cardio-respiratory functions, joint mobility and decreasing pain.</p>
<a href="service/physiotherapy"><button type="button" class="btn btn-sm btn-block u-btn-primary--air u-btn-primary transition-3d-hover">Learn about Physiotherapy<span class="fa fa-angle-right ml-2"></span></button></a>
<br>
<a href="https://nexusclinic.clinicsense.com/book" target="blank" target="blank" onclick="handleClick('bookServiceBtn');"><button type="button" class="btn btn-sm btn-block u-btn-danger--air u-btn-danger transition-3d-hover">Book Physiotherapist<span class="fa fa-angle-right ml-2"></span></button></a>
</div>
</div>
<div class="col-lg-7 position-relative">
<div id="video" class="u-video-player">
<img class="img-fluid u-video-player__preview responsively-lazy" style="border: #636569 1px solid;" src="https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-physio.jpg" data-srcset="https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-physio.jpg 500w, https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-physio.jpg 1000w, https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/lrg/services-physio.jpg 1500w" sizes="(min-width: 993px) 1500px,(min-width: 768px) and (max-width: 992px) 1000px, (max-width: 767px) 500px" alt="Physiotherapist adjusts patients knee, rehabilitates patient body">
<div class="embed-responsive embed-responsive-16by9">
<iframe id="youTubeVideo" class="embed-responsive-item"
data-src="//www.youtube.com/embed/0qisGSwZym4?autoplay=1&showinfo=0&rel=0">
</iframe>
</div>
</div>
<figure class="w-100 u-content-centered">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1109.8 797.1" style="enable-background:new 0 0 1109.8 797.1;" xml:space="preserve">
<path class="u-fill-primary" opacity=".1" d="M105.1,267.1C35.5,331.5-3.5,423,0.3,517.7c5.8,145.3,110.7,314.2,588,273.1c753-64.7,481.3-358.3,440.4-398.3
c-4-3.9-7.9-7.9-11.7-12L761.9,104.8C639.4-27.6,432.5-35.6,299.9,87L105.1,267.1z"/>
</svg>
</figure>
</div>
</div>
</div>
</div>
<!-- Service Item End -->
<!-- Service Item Start -->
<div class="scrolltag" id="acupuncture"></div>
<div class="position-relative">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5 mb-9 mb-lg-0">
<div class="pr-lg-4 mb-7">
<h2 class="text-primary">
<span class="font-weight-bold">Acupuncture</span>
</h2>
<p>Acupuncture treats various health conditions by inserting fine needles into a person's body with the aim of balancing their energy. Acupuncture improves the body’s functions and promotes the natural self-healing process by stimulating specific anatomic sites - commonly referred to as acupuncture points, or acupoints. Acupuncture stimulates the nervous system, restore blood circulation to damaged tissues, alleviate nausea, headaches and pain. Pressure, heat, or electrical stimulation may further enhance the effects.</p>
<a id="sidebarAccountInvoker" href="javascript:;" role="button" target="blank"
aria-controls="sidebarAcu"
aria-haspopup="true"
aria-expanded="false"
data-unfold-event="click"
data-unfold-hide-on-scroll="false"
data-unfold-target="#sidebarAcu"
data-unfold-type="css-animation"
data-unfold-animation-in="fadeInRight"
data-unfold-animation-out="fadeOutRight"
data-unfold-duration="500">
<button type="button" class="btn btn-sm btn-block u-btn-primary--air u-btn-primary transition-3d-hover">See Therapists who provide service<span class="fa fa-angle-right ml-2"></span></button>
</a>
<br>
<a href="https://nexusclinic.clinicsense.com/book" target="blank" target="blank" onclick="handleClick('bookServiceBtn');"><button type="button" class="btn btn-sm btn-block u-btn-danger--air u-btn-danger transition-3d-hover">Book Acupuncturist<span class="fa fa-angle-right ml-2"></span></button></a>
</div>
</div>
<div class="col-lg-7 position-relative">
<div id="video" class="u-video-player">
<img class="img-fluid u-video-player__preview responsively-lazy" style="border: #636569 1px solid;" src="https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-acupuncture.jpg" data-srcset="https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-acupuncture.jpg 500w, https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-acupuncture.jpg 1000w, https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/lrg/services-acupuncture.jpg 1500w" sizes="(min-width: 993px) 1500px,(min-width: 768px) and (max-width: 992px) 1000px, (max-width: 767px) 500px" alt="Acupuncture - Improved Health - Needles - Back Treatment">
<div class="embed-responsive embed-responsive-16by9">
<iframe id="youTubeVideo" class="embed-responsive-item"
data-src="//www.youtube.com/embed/0qisGSwZym4?autoplay=1&showinfo=0&rel=0">
</iframe>
</div>
</div>
<figure class="w-100 u-content-centered">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1109.8 797.1" style="enable-background:new 0 0 1109.8 797.1;" xml:space="preserve">
<path class="u-fill-primary" opacity=".1" d="M105.1,267.1C35.5,331.5-3.5,423,0.3,517.7c5.8,145.3,110.7,314.2,588,273.1c753-64.7,481.3-358.3,440.4-398.3
c-4-3.9-7.9-7.9-11.7-12L761.9,104.8C639.4-27.6,432.5-35.6,299.9,87L105.1,267.1z"/>
</svg>
</figure>
</div>
</div>
</div>
</div>
<!-- Service Item End -->
<!-- Service Item Start -->
<div class="scrolltag" id="osteopath"></div>
<div class="position-relative">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5 mb-9 mb-lg-0">
<div class="pr-lg-4 mb-7">
<h2 class="text-primary">
<span class="font-weight-bold">Osteopathy</span>
</h2>
<p>Osteopathy is form of non-invasive manual therapy that works to maximize health across all systems of the body by treating the muscles, joints, spine as well as the central nervous system, lymphatic system and circulatory systems. Osteopaths look at the body as a whole function and focus on the root cause of the problem to bring your body back to balance. It is effective for treating postural alignment, muscle tension, arthritis, digestive and nervous issues and much more.</p>
<a id="sidebarAccountInvoker" href="javascript:;" role="button" target="blank"
aria-controls="sidebarOsteo"
aria-haspopup="true"
aria-expanded="false"
data-unfold-event="click"
data-unfold-hide-on-scroll="false"
data-unfold-target="#sidebarOsteo"
data-unfold-type="css-animation"
data-unfold-animation-in="fadeInRight"
data-unfold-animation-out="fadeOutRight"
data-unfold-duration="500">
<button type="button" class="btn btn-sm btn-block u-btn-primary--air u-btn-primary transition-3d-hover">See Therapists who provide service<span class="fa fa-angle-right ml-2"></span></button>
</a>
<br>
<a href="https://nexusclinic.clinicsense.com/book" target="blank" target="blank" onclick="handleClick('bookServiceBtn');"><button type="button" class="btn btn-sm btn-block u-btn-danger--air u-btn-danger transition-3d-hover">Book Osteopath<span class="fa fa-angle-right ml-2"></span></button></a>
</div>
</div>
<div class="col-lg-7 position-relative">
<div id="video" class="u-video-player">
<img class="img-fluid u-video-player__preview responsively-lazy" style="border: #636569 1px solid;" src="https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-osteopathy.jpg" data-srcset="https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-osteopathy.jpg 500w, https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-osteopathy.jpg 1000w, https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-osteopathy.jpg 1500w" sizes="(min-width: 993px) 1500px,(min-width: 768px) and (max-width: 992px) 1000px, (max-width: 767px) 500px" alt="Osteopathy - Stomach Treatment">
<div class="embed-responsive embed-responsive-16by9">
<iframe id="youTubeVideo" class="embed-responsive-item"
data-src="//www.youtube.com/embed/0qisGSwZym4?autoplay=1&showinfo=0&rel=0">
</iframe>
</div>
</div>
<figure class="w-100 u-content-centered">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1109.8 797.1" style="enable-background:new 0 0 1109.8 797.1;" xml:space="preserve">
<path class="u-fill-primary" opacity=".1" d="M105.1,267.1C35.5,331.5-3.5,423,0.3,517.7c5.8,145.3,110.7,314.2,588,273.1c753-64.7,481.3-358.3,440.4-398.3
c-4-3.9-7.9-7.9-11.7-12L761.9,104.8C639.4-27.6,432.5-35.6,299.9,87L105.1,267.1z"/>
</svg>
</figure>
</div>
</div>
</div>
</div>
<!-- Service Item End -->
<!-- Service Item Start -->
<div class="scrolltag" id="orthotics"></div>
<div class="position-relative">
<div class="container u-space-2">
<div class="row align-items-center">
<div class="col-lg-5 mb-9 mb-lg-0">
<div class="pr-lg-4 mb-7">
<h2 class="text-primary">
<span class="font-weight-bold">Custom Orthotics</span>
</h2>
<p>Custom orthotics are designed to align the foot and ankle to the most anatomically efficient position to correct imbalances. Custom Orthotics are great for localized foot pain, bunions, hammer toes, arch/heel pain, leg/knee pain, and hip and back pain.<br><br>Ask our chiropractors for more information about custom orthotics today.</p>
<a href="service/orthotics"><button type="button" class="btn btn-sm btn-block u-btn-primary--air u-btn-primary transition-3d-hover">Learn about Custom Orthotics<span class="fa fa-angle-right ml-2"></span></button></a>
<br>
<a href="https://nexusclinic.clinicsense.com/book" target="blank" target="blank" onclick="handleClick('bookServiceBtn');"><button type="button" class="btn btn-sm btn-block u-btn-danger--air u-btn-danger transition-3d-hover">Book Custom Orthotics<span class="fa fa-angle-right ml-2"></span></button></a>
</div>
</div>
<div class="col-lg-7 position-relative">
<div id="video" class="u-video-player">
<img class="img-fluid u-video-player__preview responsively-lazy" style="border: #636569 1px solid;" src="https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-custom_orthotics.jpg" data-srcset="https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-custom_orthotics.jpg 500w, https://s3.ca-central-1.amazonaws.com/nexusmassageclinic/images/services/med/services-custom_orthotics.jpg 1000w, https://nexusmassageclinic.s3.ca-central-1.amazonaws.com/images/services/lrg/services-custom_orthotics.jpg 1500w" sizes="(min-width: 993px) 1500px,(min-width: 768px) and (max-width: 992px) 1000px, (max-width: 767px) 500px" alt="Chiropractic Treatment - Back and Shoulders - Adjustment">
<div class="embed-responsive embed-responsive-16by9">
<iframe id="youTubeVideo" class="embed-responsive-item"
data-src="//www.youtube.com/embed/0qisGSwZym4?autoplay=1&showinfo=0&rel=0">
</iframe>
</div>
</div>
<figure class="w-100 u-content-centered">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1109.8 797.1" style="enable-background:new 0 0 1109.8 797.1;" xml:space="preserve">
<path class="u-fill-primary" opacity=".1" d="M105.1,267.1C35.5,331.5-3.5,423,0.3,517.7c5.8,145.3,110.7,314.2,588,273.1c753-64.7,481.3-358.3,440.4-398.3
c-4-3.9-7.9-7.9-11.7-12L761.9,104.8C639.4-27.6,432.5-35.6,299.9,87L105.1,267.1z"/>
</svg>
</figure>
</div>
</div>
</div>
</div>
<!-- Service Item End -->
<!-- CTA Section -->
<div class="text-white text-center" style="background-color:#002A3A">
<div class="container p-4 post">
<span class="h6 d-block d-lg-inline-block font-weight-light mb-lg-0">
Interested in booking a <span class="font-weight-bold">Nexus treatment?</span>
</span>
<a class="btn btn-sm u-btn-white transition-3d-hover font-weight-normal ml-2" href="pricing">See our Pricing<span class="fa fa-angle-right ml-2"></span></a>
</div>
</div>
<!-- End CTA Section -->
<div style="border-top: 1px solid #898A8D;">
<!-- Services FAQ Section -->
<div class="container u-space-1">
<!-- Title -->
<div class="w-md-80 w-lg-50 text-center mx-auto mb-6">
<h2 class="text-primary"><span class="font-weight-bold">Frequently Answered Questions</span></h2>
</div>
<!-- End Title -->
<!-- FAQ Content Section -->
<ul class="nav nav-pills mb-3 justify-content-center u-space-1-bottom" id="pills-tab" role="tablist">
<li class="nav-item">
<a class="nav-link font-weight-bold active" id="v-pills-rmt-tab" data-toggle="pill" href="#v-pills-rmt" role="tab" aria-controls="v-pills-rmt" aria-selected="true">REGISTERED MASSAGE THERAPY</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold" id="v-pills-chiro-tab" data-toggle="pill" href="#v-pills-chiro" role="tab" aria-controls="v-pills-chiro" aria-selected="false">CHIROPRACTIC</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold" id="v-pills-physio-tab" data-toggle="pill" href="#v-pills-physio" role="tab" aria-controls="v-pills-physio" aria-selected="false">PHYSIOTHERAPY</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold" id="v-pills-acu-tab" data-toggle="pill" href="#v-pills-acu" role="tab" aria-controls="v-pills-acu" aria-selected="false">ACUPUNCTURE</a>
</li>
</ul>
<div class="tab-content" id="v-pills-tabContent">
<!-- RMT Accordion -->
<div class="tab-pane fade show active" id="v-pills-rmt" role="tabpanel" aria-labelledby="v-pills-rmt-tab">
<div id="FAQCollapse">
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingOne">
<div class="collapsed" data-toggle="collapse" data-target="#FAQOne" aria-expanded="false" aria-controls="FAQOne" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
What Is Massage Therapy?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQOne" class="collapse" aria-labelledby="FAQHeadingOne" data-parent="#FAQCollapse">
<div class="card-body px-4">
Massage Therapy is the manipulation of the soft tissues of the body including muscles, connective tissue, tendons, ligaments and joints. Massage therapy helps alleviate the soft tissue discomfort associated with everyday and occupational stresses, muscular over-use and many chronic pain conditions. If employed early enough after accidents involving trauma and injury, massage therapy can greatly reduce the development of painful muscular patterning.
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingTwo">
<div class="collapsed" data-toggle="collapse" data-target="#FAQTwo" aria-expanded="false" aria-controls="FAQTwo" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
How can massage therapy help me?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQTwo" class="collapse" aria-labelledby="FAQHeadingTwo" data-parent="#FAQCollapse">
<div class="card-body px-4">
Massage therapy can be beneficial to people of all ages and can help alleviate pain and tension from many conditions. Massage helps by increasing blood circulation in an area, decreasing muscle tension, improving tissue health, and increasing range of motion. Massage is a very non-invasive and safe treatment that can help improve the following conditions:<br><br>
<ul>
<li>Inflammatory conditions such as arthritis and tendinitis</li>
<li>Stress relief and associated conditions</li>
<li>Headaches and migraines</li>
<li>Muscle and related conditions such as spasms, strains and sprains</li>
<li>Back pain</li>
<li>Neck pain</li>
<li>Repetitive strain injury</li>
<li>Circulatory and Respiratory problems</li>
<li>Pregnancy and labour discomfort</li>
<li>Post-injury and post surgical rehabilitation</li>
<li>And many other conditions</li>
</ul>
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingFour">
<div class="collapsed" data-toggle="collapse" data-target="#FAQFour" aria-expanded="false" aria-controls="FAQFour" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
What should I expect in a Massage Therapy treatment?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQFour" class="collapse" aria-labelledby="FAQHeadingFour" data-parent="#FAQCollapse">
<div class="card-body px-4">
Your massage session starts when you enter the room and ends when you leave the room. It consists of an assessment, treatment and exercises/home care.<br><br>
During the treatment, your massage therapist will ask you your goals and what areas you would like to be worked on. If this is your subsequent treatment, your therapist will follow up on the effects of your last treatment session and modify the treatment, if needed, for effectiveness.<br><br>
After you have set your goals for treatment, your RMT will leave the room for you to get ready on the table. During the massage, your RMT will check in on the pressure of the massage to make sure you feel comfortable. If you feel the pressure is too much, or would like more, please don’t hesitate to let your massage therapist know and he/she will modify the treatment for you.<br><br>
After the massage is complete, your RMT may provide you some exercises and home care on how to improve your health based on your goals. The homecare prescription is part of your massage therapy session that you booked.<br><br>
Please note that if you require more hands-on massage time to book for a longer duration.
</div>
</div>
</div>
<!-- End Card -->
</div>
</div>
<!-- End RMT Accordion -->
<!-- Chiro Accordion -->
<div class="tab-pane fade" id="v-pills-chiro" role="tabpanel" aria-labelledby="v-pills-chiro-tab">
<div id="FAQCollapse">
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingOne">
<div class="collapsed" data-toggle="collapse" data-target="#FAQOne" aria-expanded="false" aria-controls="FAQOne" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
What is Chiropractic?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQOne" class="collapse" aria-labelledby="FAQHeadingOne" data-parent="#FAQCollapse">
<div class="card-body px-4">
Chiropractic is an evidence-informed, non-invasive, hands-on health care discipline that focuses on the musculoskeletal system. As spine, muscle, and nervous system experts, your chiropractor at Nexus Massage & Rehab provide qualified, effective treatment to promote health, alleviate pain, and improve your quality of life. Chiropractors focus on your spine, muscle, and nervous system and treat the bones, muscles, soft tissues, and joints that you use every day. The spine, muscle, and nervous system supports your weight, keeps your body stable, protects your organs, and keeps you moving. It also connects directly to other vital systems in your body, which is why medical professionals, researchers, and the wider health community trust the spine care expertise of chiropractors to assess, diagnose, and treat conditions and injuries related to the spine, muscle, and nervous system. For optimal health and quality of life, a chiropractor should be part of every Canadian’s healthcare team.
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingTwo">
<div class="collapsed" data-toggle="collapse" data-target="#FAQTwo" aria-expanded="false" aria-controls="FAQTwo" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
When should I consider Chiropractic care?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQTwo" class="collapse" aria-labelledby="FAQHeadingTwo" data-parent="#FAQCollapse">
<div class="card-body px-4">
If aching joints and muscle pain are affecting your ability to get through the day and keeping you away from your favourite activities, consider chiropractic care. Work, accidents, sports injuries, household chores, even the stress of daily living can cause painful joint and back problems. Even if you do not have painful symptoms, chiropractic care can help you maintain healthy spine and joint function.<br><br>
Here are some of the most common reasons why patients visit a chiropractor at Nexus Massage & Rehab:<br><br>
<ul>
<li>Back pain</li>
<li>Neck pain</li>
<li>Knee pain</li>
<li>Headaches</li>
<li>Strains and sprains from daily activities</li>
<li>Repetitive strain injuries</li>
<li>Work and sports-related injuries</li>
<li>Arthritis</li>
<li>Restricted movement in the back, shoulders, neck or limbs</li>
</ul>
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingThree">
<div class="collapsed" data-toggle="collapse" data-target="#FAQThree" aria-expanded="false" aria-controls="FAQThree" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
What are the benefits of Chiropractic care?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQThree" class="collapse" aria-labelledby="FAQHeadingThree" data-parent="#FAQCollapse">
<div class="card-body px-4">
Chiropractic treatment is skilled, hands-on health care that relieves pain and helps your body be its best. Here are some of its benefits:<br><br>
<ul>
<li>Improved movement in your neck, shoulders, back and torso</li>
<li>Better posture</li>
<li>Relief from headaches, neck and back pain</li>
<li>Prevention of work-related muscle and joint injuries</li>
<li>Enhanced athletic performance</li>
<li>Improved flexibility</li>
<li>Relief of pregnancy-related back ache</li>
<li>Correction of gait and foot problems</li>
</ul>
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingFour">
<div class="collapsed" data-toggle="collapse" data-target="#FAQFour" aria-expanded="false" aria-controls="FAQFour" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
How can Chiropractors at Nexus Massage & Rehab help?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQFour" class="collapse" aria-labelledby="FAQHeadingFour" data-parent="#FAQCollapse">
<div class="card-body px-4">
Chiropractors at Nexus Massage & Rehab are extensively educated in the prevention, assessment, diagnosis and management of musculoskeletal (MSK) conditions and associated neurological system and will recommend a course of treatment to help relieve pain and improve function without surgery or pharmaceuticals. This includes<br><br>
<ul>
<li><strong><em>Manual therapy:</strong></em> When a joint isn’t moving as well as it should, your chiropractor at Nexus Massage & Rehab may utilize this treatment technique to help regain motion within a joint.</li><br>
<li><strong><em>Soft tissue therapy:</strong></em> This is where your chiropractor works to relax and treat tight and sore muscles.</li><br>
<li><strong><em>Exercise therapy/self-management:</strong></em> Your chiropractor will be able to provide simple exercises that you can do at home to help with your pain and to help prevent re-injury.</li><br>
<li><strong><em>Modalities:</strong></em> Although chiropractors use their hands for most treatments, they also use other methods such as heat, ultrasound, low-level laser therapy, electrotherapy, acupuncture and other physical therapy techniques.</li><br>
At Nexus Massage & Rehab, our chiropractors adopt an evidence-informed practice principle to guide clinical and treatment decisions while prioritizing our patient’s preferences and values.</li>
</ul>
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingOne-alt">
<div class="collapsed" data-toggle="collapse" data-target="#FAQOne-alt" aria-expanded="false" aria-controls="FAQOne-alt" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
What can I expect on my first appointment to a Chiropractor at Nexus Massage & Rehab?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQOne-alt" class="collapse" aria-labelledby="FAQHeadingOne-alt" data-parent="#FAQCollapse">
<div class="card-body px-4">
The initial chiropractic assessment consists of a thorough health history and focused physical examination that helps the chiropractor identify factors influencing a patient’s health. The chiropractor will then review therapies that may be used in the treatment plan. Chiropractic patients may ask their chiropractor any questions they have. A chiropractic treatment is also performed on the first visit, unless further diagnostic tests are needed. The typical chiropractic initial assessment takes between 40 and 60 minutes.
</div>
</div>
</div>
<!-- End Card -->
</div>
</div>
<!-- End Chiro Accordion -->
<!-- Physio Accordion -->
<div class="tab-pane fade" id="v-pills-physio" role="tabpanel" aria-labelledby="v-pills-physio-tab">
<div id="FAQCollapse">
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingOne">
<div class="collapsed" data-toggle="collapse" data-target="#FAQOne" aria-expanded="false" aria-controls="FAQOne" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
What is Physiotherapy?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQOne" class="collapse" aria-labelledby="FAQHeadingOne" data-parent="#FAQCollapse">
<div class="card-body px-4">
Physiotherapy is a profession that focuses on the science of movement in order to address injury, conditions, and diseases. Their aim is to restore, maintain, and optimize a patient’s function, mobility, and to prevent future injuries. Physiotherapists are important players in health promotion and disease prevention.<br><br>
Physiotherapists can assess, diagnose and treat disease conditions, and injuries.
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingTwo">
<div class="collapsed" data-toggle="collapse" data-target="#FAQTwo" aria-expanded="false" aria-controls="FAQTwo" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
What types of issues can Physiotherapists treat?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQTwo" class="collapse" aria-labelledby="FAQHeadingTwo" data-parent="#FAQCollapse">
<div class="card-body px-4">
Physiotherapy can help a wide range of physical ailments, from neurological, cardiorespiratory, to musculoskeletal issues, such as, (but not limited to):<br><br>
<ul>
<li>Back Pain</li>
<li>Sports Injuries; sprains and strains</li>
<li>Pelvic Health (i.e. pregnancy related, incontinence)</li>
<li>Neurological conditions (i.e. stroke, traumatic brain injuries, Parkinson’s, spinal cord injuries)</li>
<li>Fractures</li>
<li>Osteoporosis</li>
<li>Post-Surgery rehabilitation such as hip or knee replacement</li>
<li>Asthma</li>
<li>Chronic Obstructive Pulmonary Disease</li>
<li>Cardiovascular diseases</li>
<li>Falls Prevention</li>
<li>Concussion Management</li>
<li>Vestibular Rehabilitation</li>
<li>Arthritis</li>
<li>Amputation Rehabilitation</li>
<li>Pediatric Therapy</li>
</ul>
And much more!
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingThree">
<div class="collapsed" data-toggle="collapse" data-target="#FAQThree" aria-expanded="false" aria-controls="FAQThree" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
What to expect in your first Physiotherapy appointment at Nexus Massage and Rehab?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQThree" class="collapse" aria-labelledby="FAQHeadingThree" data-parent="#FAQCollapse">
<div class="card-body px-4">
In the first physiotherapy appointment, your physiotherapist at Nexus Massage and Rehab will discuss with you the nature of your condition and pain. They will also probe into your medical history and any other treatments you had in the past. It is best to be honest with your physiotherapist regarding your health; this is a place free of judgement or embarrassment.<br><br>
This is followed by a physical examination. Your physiotherapist will assess your movement, muscle strength, and perform other special tests to get a better understanding about how you move, and what may contribute to your pain. The premise is to look for areas of your pain. Please let your physiotherapist know what is, or isn’t aggravating it. Do not try to endure the pain!<br><br>
It is important for you to have a goal on what you want to achieve with physiotherapy.
</div>
</div>
</div>
<!-- End Card -->
</div>
</div>
<!-- End Physio Accordion -->
<!-- Acu Accordion -->
<div class="tab-pane fade" id="v-pills-acu" role="tabpanel" aria-labelledby="v-pills-acu-tab">
<div id="FAQCollapse">
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingOne">
<div class="collapsed" data-toggle="collapse" data-target="#FAQOne" aria-expanded="false" aria-controls="FAQOne" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
What is Acupuncture or TCM?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQOne" class="collapse" aria-labelledby="FAQHeadingOne" data-parent="#FAQCollapse">
<div class="card-body px-4">
Acupuncture is one of the few modalities that fall under the system of Traditional Chinese Medicine, or TCM. Its use can be found in artifacts dating back to 1000 BC. It involves the use of small needles inserted at specific points on the body, to help regulate the flow of energy or “qi”.<br><br>
Imbalance of qi in the body is at the root of all ailments and disease. By regulating the state of qi with the needles, we can help guide the body back into balance. Acupuncture can treat any conditions and is often a great compliment to other treatment programs as well.
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingTwo">
<div class="collapsed" data-toggle="collapse" data-target="#FAQTwo" aria-expanded="false" aria-controls="FAQTwo" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
What can Acupuncture be used for?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQTwo" class="collapse" aria-labelledby="FAQHeadingTwo" data-parent="#FAQCollapse">
<div class="card-body px-4">
Acupuncture may be used for a wide variety of health issues. According to the World Health Organization, acupuncture may be beneficial for, but not limited to, the following conditions:<br><br>
<ul>
<li><strong><em>Digestive</em></strong> – IBS, Constipation, Diarrhea, Indigestion</li>
<li><strong><em>Emotional</em></strong> – Anxiety, Depression, Insomnia, Addictions</li>
<li><strong><em>Gynecological</em></strong> – Infertility, Menopause, PMS</li>
<li><strong><em>Musculoskeletal</em></strong> – Back pain, Arthritis, Cramping, Muscle Pain/Weakness, Sciatica</li>
<li><strong><em>Neurological</em></strong> – Headaches, Migraines, Stroke Rehab</li>
<li><strong><em>Systemic</em></strong> – Stress, Chronic Fatigue, Fibromyalgia</li>
</ul>
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingThree">
<div class="collapsed" data-toggle="collapse" data-target="#FAQThree" aria-expanded="false" aria-controls="FAQThree" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
How does Acupuncture work?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQThree" class="collapse" aria-labelledby="FAQHeadingThree" data-parent="#FAQCollapse">
<div class="card-body px-4">
If we look at acupuncture through a scientific perspective, acupuncture works by modulating various biochemical and physiological pathways in the body, which can be supportive to the body’s innate healing mechanisms. From a traditional eastern perspective, acupuncture works by modulating the flow of qi or energy in the body. The needles are inserted at specific points on the body which lie along meridians (energy channels). The insertion of the needles can regulate the flow of energy not only at the specific point or channel but also in the organs themselves.
</div>
</div>
</div>
<!-- End Card -->
<!-- More Expandable Card -->
<div class="card mb-3 u-card-collapse" style="border:none;">
<div id="FAQAcupunctureExpand" class="collapse" aria-labelledby="FAQHeadingAcupunctureExpand" data-parent="#FAQHeadingAcupunctureExpand">
<div class="card-body expand-card">
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingFour">
<div class="collapsed" data-toggle="collapse" data-target="#FAQFour" aria-expanded="false" aria-controls="FAQFour" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
What should I do before an Acupuncture treatment?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQFour" class="collapse" aria-labelledby="FAQHeadingFour" data-parent="#FAQCollapse">
<div class="card-body px-4">
Make sure you are well hydrated and have eaten within the last two hours. For convenience for yourself and the practitioner, it is best to wear loose and light clothing which will provide easier access to certain areas of the body for treatment.
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingFive">
<div class="collapsed" data-toggle="collapse" data-target="#FAQFive" aria-expanded="false" aria-controls="FAQFive" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
What is a typical Acupuncture treatment like at Nexus Massage and Rehab?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQFive" class="collapse" aria-labelledby="FAQHeadingFive" data-parent="#FAQCollapse">
<div class="card-body px-4">
A typical treatment here at Nexus Massage and Rehab consists of an initial appointment where the practitioner goes through an intake with you, asking you a series of questions, performs a tongue diagnosis and palpation of your pulse to understand your health status and constitution which will then guide the treatment plan. After the intake, your acupuncturist will put thin needles in certain areas of your body. The needles will remain in the body for 15 to 30 minutes. Additional treatment with tuina (Chinese massage) may be included if necessary.<br><br>
Subsequent treatments will involve a brief recap of the previous treatment and a quick analysis of the patient's current status followed by acupuncture.
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingSix">
<div class="collapsed" data-toggle="collapse" data-target="#FAQSix" aria-expanded="false" aria-controls="FAQFSix" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
Where does the Acupuncturist insert the needles?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQSix" class="collapse" aria-labelledby="FAQHeadingSix" data-parent="#FAQCollapse">
<div class="card-body px-4">
The most common areas that will be needled during treatment will be on the limbs. The needles can potentially go in at other points on the body, depending on the individual and their health status.<br><br>
If you are nervous or uncomfortable about a specific area being treated, do not hesitate to voice your concerns to the practitioner and he/she will take appropriate measures.
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingOne-alt">
<div class="collapsed" data-toggle="collapse" data-target="#FAQOne-alt" aria-expanded="false" aria-controls="FAQOne-alt" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
Does Acupuncture hurt?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQOne-alt" class="collapse" aria-labelledby="FAQHeadingOne-alt" data-parent="#FAQCollapse">
<div class="card-body px-4">
Most people you ask will say no. If done properly, the sensation will be extremely mild. Some common sensations that are reported are pressure, warmth, pricking, twitching, or nothing at all.<br><br>
Mild bruising or redness may occur at the needle site, but most of the time there will be no visible trace of the needle having been inserted.
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingTwo-alt">
<div class="collapsed" data-toggle="collapse" data-target="#FAQTwo-alt" aria-expanded="false" aria-controls="FAQTwo-alt" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
What are Acupuncture needles like?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQTwo-alt" class="collapse" aria-labelledby="FAQHeadingTwo-alt" data-parent="#FAQCollapse">
<div class="card-body px-4">
Some individuals may be hesitant about trying acupuncture due to uncomfortable past experiences with needles. However, it is good to know that the needles used for acupuncture vary greatly from the ones that are used for injections, piercings or blood withdrawal.<br><br>
Acupuncture needles are much thinner than those mentioned. Also acupuncture needles are solid, not hollow, so there is no removal of flesh upon insertion or removal – this drastically changes the feeling experienced.
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingNine">
<div class="collapsed" data-toggle="collapse" data-target="#FAQNine" aria-expanded="false" aria-controls="FAQNine" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
Are the needles re-used?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQNine" class="collapse" aria-labelledby="FAQHeadingNine" data-parent="#FAQCollapse">
<div class="card-body px-4">
No, the needles used for acupuncture are sealed, sterilized, and used only once and discarded in a disposal hazard box after.
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingTen">
<div class="collapsed" data-toggle="collapse" data-target="#FAQTen" aria-expanded="false" aria-controls="FAQTen" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
What is the difference between TCM Acupuncture and Dry Needling?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>
</div>
<div id="FAQTen" class="collapse" aria-labelledby="FAQHeadingTen" data-parent="#FAQCollapse">
<div class="card-body px-4">
The main difference would be the theory behind it. With TCM acupuncture the needles are inserted into specific points on the body that run along meridians. These meridians are where the vital energy (qi) of the body flows. Each specific point has its own unique function and can help aid in the flow of qi and balancing of the internal organs.<br><br>
Acupuncture may be used for a wide variety of conditions. Dry needling is only for musculoskeletal conditions and involves the insertion of a needle into a trigger point (painful area) to relieve pain.
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card mb-3 u-card-collapse">
<div class="card-header px-4" id="FAQHeadingEleven">
<div class="collapsed" data-toggle="collapse" data-target="#FAQEleven" aria-expanded="false" aria-controls="FAQEleven" role="button">
<h3 class="h5 d-flex justify-content-between align-items-center font-weight-normal u-card-collapse__heading mb-0">
Does insurance cover Acupuncture?
<span class="fa fa-angle-up u-card-collapse__heading-icon"></span>
</h3>
</div>