-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.php
579 lines (547 loc) · 25.8 KB
/
index.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
<?php
session_start();
?>
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Aspire recovery</title>
<link href="//fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap" rel="stylesheet">
<!-- Template CSS -->
<!-- <link rel="stylesheet" href="psychatrist/assets/css/style-starter.css"> -->
<link rel="stylesheet" href="assets/css/style-starter.css">
</head>
<body>
<!--header-->
<?php
include "header.php";
?>
<!-- //header -->
<!-- main-slider -->
<section class="w3l-main-slider" 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-left">
<p>Being Sober</p>
<h5>Start Where you are.<br>Use What You Have.<br>Do What You Can </h5>
<a href="about.php" class="btn btn-primary btn-style">Start Now</a>
</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-left">
<p>Acheive High</p>
<h5>Dont be Pushed By Your Problems.<br>Be led by Your Dreams.</h5>
<a href="about.php" class="btn btn-primary btn-style">Start Now</a>
</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-left">
<p>Recovery For Life</p>
<h5>Experience,Trust and <br> Proven Success</h5>
<a href="about.php" class="btn btn-primary btn-style">Start Now</a>
</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-left">
<p>Care For Your Body</p>
<h5>Get All The Helpful<br>Advice For Better<br>Tommorow</h5>
<a href="about.php" class="btn btn-primary btn-style">Start Now</a>
</div>
</div>
</div>
</div>
</li>
</div>
</div>
</div>
</section>
<!-- /main-slider -->
<!-- banner image bottom shape -->
<div class="position-relative">
<div class="shape overflow-hidden">
<svg viewBox="0 0 2880 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 48H1437.5H2880V0H2160C1442.5 52 720 0 720 0H0V48Z" fill="currentColor">
</path>
</svg>
</div>
</div>
<!-- //banner image bottom shape -->
<!-- home page block1 -->
<section class="homeblock1">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="box-wrap">
<h4><a href="#mission">View our Mission</a></h4>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 mt-md-0 mt-sm-4 mt-3">
<div class="box-wrap">
<h4><a href="psyprofile.php">Book psychiatrist</a></h4>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 mt-lg-0 mt-sm-4 mt-3">
<div class="box-wrap">
<h4><a href="#addictionid">Addiction Types</a></h4>
</div>
</div>
</div>
</div>
</section>
<section class="content-6-mian py-5 ">
<div class="container py-lg-5">
<div class="title-content text-left mb-4 ">
<h3 style="text-align: center" class="vc_custom_heading white-text vc_custom_1579949523563">Find and Engage
New People Actively Searching for an<br>
Addiction Treatment Center in Your Area</h3>
</div>
<p> When people are faced with the decision to enter an addiction treatment center, they usually find a
rehab in one of three places: a recommendation from their lawyer or court, friends or family, or
the internet. And since the internet has become a central hub of information, when people have an
issue that they need to solve then they tend to bypass those first two options and go straight to
their computer to find the answer. That’s why your addiction treatment facility needs to have a
strong presence to connect you to the people who need you the most. But if you don’t know where
to start, then that’s where our addiction treatment web design experts can step in and build you
an engaging, eye-catching website that easily converts web users into patients. </p>
</div>
</section>
<!-- //content-6-->
<!-- stats -->
<section class="w3_stats py-5" id="stats">
<div class="container py-lg-5 py-md-4 py-2">
<div class=" text-center">
<h3 class="title-big">Through patient-centered care, community partnerships, and advocacy for effective
public policy,  <span> <u>ASPIRE </u> </span>   is dedicated to treating people whose health
and quality of life are compromised by different kind of addiction's</h3>
</div>
<div class="w3-stats text-center">
<div class="row">
<div class="col-md-3 col-6">
<div class="counter">
<span class="fa fa-users"></span>
<div class="timer count-title count-number mt-3" data-to="00" data-speed="1500"></div>
<p class="count-text ">Total Patient Recover</p>
</div>
</div>
<div class="col-md-3 col-6">
<div class="counter">
<span class="fa fa-cutlery"></span>
<div class="timer count-title count-number mt-3" data-to="3" data-speed="1500"></div>
<p class="count-text ">Active User</p>
</div>
</div>
<div class="col-md-3 col-6">
<div class="counter">
<span class="fa fa-home"></span>
<div class="timer count-title count-number mt-3" data-to="2" data-speed="1500"></div>
<p class="count-text ">Addiction Types</p>
</div>
</div>
<div class="col-md-3 col-6">
<div class="counter">
<span class="fa fa-male"></span>
<div class="timer count-title count-number mt-3" data-to="3" data-speed="1500"></div>
<p class="count-text ">psychiatrist</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="page-builder-section two-col-text mx-auto">
<div class="container">
<div class="row">
<div class="col-12" style="padding: 20px">
<div class="row">
<div class="col-md-6 text-padding generic-wrapper">
<h2 style="color: orangered">What we do</h2> <br>
<p>ASPIRE, a treatment provider for different kind's of addict', is the Newest opioid addiction
treatment program in Internet. We help people start and sustain their journey to recovery.
We offer hope and healing.</p><br>
<h3 style="color: orangered">We believe in quality care that may include medicine</h3> <br>
<p>We know that patients are most likely to succeed in recovery when they receive
multidisciplinary care. That includes a supportive community as well as behavioral health
and medication. We believe in a medical approach that includes the use of medications such
as methadone and buprenorphine/naloxone (often called Suboxone®), in combination with case
management, individual, and group therapy.</p><br>
</div>
<div class="col-md-6 text-padding generic-wrapper">
<h2 style="color: orangered">Who we treat</h2> <br>
<h3>We accept patients who:</h3><br>
<ul>
<li>Are new to recovery</li>
<li>Have tried recovery before and relapsed</li>
<li>Are struggling with multiple substances</li>
<li>Want to explore using medications, such as buprenorphine/naloxone, often called
Suboxone®
</li>
<li>Are struggling to maintain their jobs, relationships, and housing</li>
<li>Need our help in establishing a safe, stable support network</li>
<li>Are fighting with multiple addictions</li>
</ul>
<style>.embed-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}</style>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //stats -->
<section class="w3-services-ab py-5" id="mission">
<div class="container py-lg-5 py-md-4">
<h3 class="title-big text-center mb-5">Our Mission and Goals</h3>
<div class="w3-services-grids">
<div class="fea-gd-vv row">
<div class="col-lg-4 col-md-6">
<div class="float-lt feature-gd">
<div class="icon">
<img src="assets/images/home.png" alt="" class="img-fluid">
</div>
<div class="icon-info">
<h5>Recovery With Love and Respect</h5>
<p>We treat every client with the love and respect they deserve while helping them every
step of the way on their path to recovery in the real world.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-md-0 mt-4">
<div class="float-mid feature-gd">
<div class="icon">
<img src="assets/images/education.png" alt="" class="img-fluid">
</div>
<div class="icon-info">
<h5>Motivate Our Client To Succeed</h5>
<p> Inspiring and motivating our clients to succeed on their path in Recovery while creating
positive connections in their life and improving their work or education and family
bonds.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-lg-0 mt-4">
<div class="float-rt feature-gd">
<div class="icon">
<img src="assets/images/health.png" alt="" class="img-fluid">
</div>
<div class="icon-info">
<h5>Connect People Living A Sobor Life</h5>
<p>we want to connect people living a sober life with like-minded individuals through
meet-ups, online live streams, and events across the country. </p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-4 pt-md-2">
<div class="float-lt feature-gd">
<div class="icon">
<img src="assets/images/icon1.png" alt="" class="img-fluid">
</div>
<div class="icon-info">
<h5>Provide High Quality,Accessible and Afordable Care</h5>
<p>Provide high quality, accessible and affordable care that is evidence-based and localised
to suit our population.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-4 pt-md-2">
<div class="float-lt feature-gd">
<div class="icon">
<img src="assets/images/food.png" alt="" class="img-fluid">
</div>
<div class="icon-info">
<h5>Reduce stigma and barriers to seeking treatment.
</h5>
<p> our mission is to provide individualized, supportive, and compassionate care to those
who are suffering from an addiction.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-4 pt-md-2">
<div class="float-lt feature-gd">
<div class="icon">
<img src="assets/images/eco.png" alt="" class="img-fluid">
</div>
<div class="icon-info">
<h5>Heal Spiritually,mentally and pshysically</h5>
<p> Our alcohol rehab and drug rehab center team members believe in treating each client’s
underlying core problems to help them heal spiritually, mentally, and physically.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="w3l-open-block-services py-5" id="addictionid">
<div class="container py-lg-5 pt-4">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="card text-center">
<div class="icon-holder">
<span class="fa fa-signal service-icon" aria-hidden="true"></span>
</div>
<h4 class="mission">ALCOHOLISM</h4>
<div class="open-description">
<p>Alcoholism is a progressive, chronic illness and in many cases can be fatal when the
consumption of alcoholic drinks is out of control. It interferes with physical,
mental, social and/or family health in addition to work responsibilities.</p>
<a href="articles.php">Read More</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-md-0 mt-5 pt-md-0 pt-3">
<div class="card text-center">
<div class="icon-holder " style="background-image: url("
")">
<span class="fa fa-assistive-listening-systems service-icon" aria-hidden="true"></span>
</div>
<h4 class="mission">COCAINE</h4>
<div class="open-description">
<p>
Cocaine is a drug belonging to the group of psychoactive substances, that is, it
produces a directly stimulating effect to the central nervous system, principally
to the brain. Cocaine tolerance develops quickly, which means that it is highly
addictive.</p>
<a href="articles.php">Read More</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-lg-0 mt-5 pt-lg-0 pt-3">
<div class="card text-center">
<div class="icon-holder">
<span class="fa fa-diamond service-icon" aria-hidden="true"></span>
</div>
<h4 class="mission">TOBACCO</h4>
<div class="open-description">
<p>Smoking is responsible for approximately 15% of deaths in Spain. of which 166 are men and 40 are women.
Smoking has been linked to numerous diseases. The largest percentage of smokers
is aged 25-39 years of age, followed by those aged 40-59 years old.</p>
<a href="articles.php">Read More</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-lg-0 mt-5 pt-lg-0 pt-3">
<div class="card text-center">
<div class="icon-holder">
<span class="fa fa-magic service-icon" aria-hidden="true"> </span>
</div>
<h4 class="mission">BEHAVIOURAL</h4>
<div class="open-description">
<p>Eating disorders encompass a number of chronic and progressive diseases,
comprised of a very complex range of symptoms which go beyond behaviour
around food, such as a change or distortion of body image. </p>
<a href="articles.php">Read More</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!--charity causes -->
<section class="w3l-index5 py-5" id="causes">
<div class="container py-lg-5 py-md-4">
<div class="row">
<div class="col-lg-4">
<div class="header-section">
<h3 class="title-big">Our Charity Causes </h3>
<p class="mt-3 mb-lg-5 mb-4">We believe anyone can achieve and sustain long-term sobriety and
recovery. We strive to instill the tools needed to achieve and sustain a long-term recovery. we
want you to know that achieving long-term sobriety and recovery and growing into a leader within
the community is possible.</p>
</div>
<a href="contact.php" class="btn btn-outline-primary btn-style">Contact Us</a>
</div>
<div class="col-lg-4 col-md-6 mt-lg-0 mt-5">
<div class="img-block">
<a href="causes.php">
<img src="assets/images/helprehab.jpg" class="img-fluid radius-image-full" alt="image"/>
<span class="title">Help Rehab Centers</span>
</a>
</div>
<div class="img-block mt-4">
<a href="causes.php"> <img src="assets/images/fund.jpg" class="img-fluid radius-image-full"
alt="image"/>
<span class="title">Fund Addiction Research</span>
</a>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-lg-0 mt-md-5 mt-4">
<div class="img-block">
<a href="causes.php"> <img src="assets/images/professionals.jpg" class="img-fluid radius-image-full"
alt="image"/>
<span class="title">Help Edcucate and Train Professionals</span>
</a>
</div>
<div class="img-block mt-4">
<a href="causes.php">
<img src="assets/images/support.jpg" class="img-fluid radius-image-full" alt="image"/>
<span class="title">Support Our creators</span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- //charity causes -->
<!-- bg -->
<div class="w3l-bg py-5">
<div class="container py-lg-5 py-md-4">
<div class="welcome-left text-center py-lg-4">
<span class="fa fa-heart-o"></span>
<h3 class="title-big">Help the Homeless & Hungry People.</h3>
<a href="#donate" class="btn btn-style btn-primary mt-sm-5 mt-4">Donate Now</a>
</div>
</div>
</div>
<!-- //bg -->
<!-- footer 14 -->
<div class="w3l-footer-main">
<div class="w3l-sub-footer-content">
<!-- Footers-14 -->
<footer class="footer-14">
<?php
include 'footer.php';
?> <!-- //footer 14 -->
<script src="assets/js/jquery-3.3.1.min.js"></script> <!-- Common jquery plugin -->
<script src="assets/js/theme-change.js"></script><!-- theme switch js (light and dark)-->
<script src="assets/js/owl.carousel.js"></script>
<!-- script for banner slider-->
<script>
$(document).ready(function () {
$('.owl-one').owlCarousel({
loop: true,
dots: false,
margin: 0,
nav: true,
responsiveClass: true,
autoplay: true,
autoplayTimeout: 5000,
autoplaySpeed: 1000,
autoplayHoverPause: false,
responsive: {
0: {
items: 1
},
480: {
items: 1
},
667: {
items: 1
},
1000: {
items: 1
}
}
})
})
</script>
<!-- //script -->
<!-- script for tesimonials carousel slider -->
<script>
$(document).ready(function () {
$("#owl-demo1").owlCarousel({
loop: true,
margin: 20,
nav: false,
responsiveClass: true,
responsive: {
0: {
items: 1
},
736: {
items: 1
},
1000: {
items: 2,
loop: false
}
}
})
})
</script>
<!-- //script for tesimonials carousel slider -->
<script src="assets/js/counter.js"></script>
<!--/MENU-JS-->
<script>
$(window).on("scroll", function () {
var scroll = $(window).scrollTop();
if (scroll >= 80) {
$("#site-header").addClass("nav-fixed");
} else {
$("#site-header").removeClass("nav-fixed");
}
});
//Main navigation Active Class Add Remove
$(".navbar-toggler").on("click", function () {
$("header").toggleClass("active");
});
$(document).on("ready", function () {
if ($(window).width() > 991) {
$("header").removeClass("active");
}
$(window).on("resize", function () {
if ($(window).width() > 991) {
$("header").removeClass("active");
}
});
});
</script>
<!--//MENU-JS-->
<!-- disable body scroll which navbar is in active -->
<script>
$(function () {
$('.navbar-toggler').click(function () {
$('body').toggleClass('noscroll');
})
});
</script>
<!-- //disable body scroll which navbar is in active -->
<!--bootstrap-->
<script src="assets/js/bootstrap.min.js"></script>
<!-- //bootstrap-->
</body>
</html>