-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
746 lines (688 loc) · 43.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="theme/img/fav-icon.png" type="image/x-icon" />
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Anemone</title>
<!-- Icon css link -->
<link href="theme/vendors/themify-icon/themify-icons.css" rel="stylesheet">
<link href="theme/css/font-awesome.min.css" rel="stylesheet">
<link href="theme/vendors/linears-icon/style.css" rel="stylesheet">
<!-- Bootstrap -->
<link href="theme/css/bootstrap.min.css" rel="stylesheet">
<!-- RS5.0 Layers and Navigation Styles -->
<link rel="stylesheet" type="text/css" href="theme/vendors/revolution/css/layers.css">
<link rel="stylesheet" type="text/css" href="theme/vendors/revolution/css/navigation.css">
<link rel="stylesheet" type="text/css" href="theme/vendors/revolution/css/settings.css">
<!-- Extra plugin css -->
<link href="theme/vendors/animate-css/animate.css" rel="stylesheet">
<link href="theme/vendors/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="theme/css/style.css" rel="stylesheet">
<link href="theme/css/responsive.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!---<script type="text/javascript" charset="utf-8" src="//downloads.mailchimp.com/js/signup-forms/popup/1.0/popup.js"></script>--->
<script src="//s3.amazonaws.com/downloads.mailchimp.com/js/signup-forms/popup/embed.js" data-dojo-config="usePlainJson: true, isDebug: false"></script>
<script> function openPOPUP(){
require(["mojo/signup-forms/Loader"], function (L) { L.start({"baseUrl": "mc.us18.list-manage.com", "uuid":"116ba1f1aa06b9ad7d0c1ef3a","lid":"1018b6225b",})});
document.cookie = "MCPopupClosed=; path=/; expires=Thu, 01 Jan 1970 00:00:00 UTC";
document.cookie = "MCPopupSubscribed=; path=/; expires=Thu, 01 Jan 1970 00:00:00 UTC";
}
</script>
</head>
<body>
<!--================Slider Area =================-->
<header class="main_menu_area">
<nav class="navbar navbar-default">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img style="height: 75px" src="theme/img/anemone.png" alt=""></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="#home">Home</a></li>
<li><a href="#feature">Features</a></li>
<li><a href="#screenshot">Screenshots</a></li>
<li><a href="#download">Download</a></li>
<li><a href="#questions">FAQ</a></li>
<li><a href="#media">Press</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
</header>
<!--================Slider Area =================-->
<!--================Slider Area =================-->
<section id="home" style="background-color:#000; text-align:center;
position:relative;">
<div class="bgImage"></div>
<svg class="blobCont">
<style>
.maintext {
font-family: 'Montserrat';
color: #fff;
font-size: 60px;
}
.secondtext {
font-family: 'Montserrat';
color: #fff;
font-size: 25px;
}
.thirdtext {
font-family: 'Montserrat';
color: #fff;
font-size: 15px;
}
</style>
<image xlink:href="theme/img/anemonepic.png" mask="url(#mask)" width="100%" height="100%" preserveAspectRatio="xMidYMid slice" />
<text class="maintext" x="50%" y ="50%" dominant-baseline="middle" text-anchor="middle" fill="white" z-index="4">Anemone</text>
<text x="50%" y ="50%" dominant-baseline="middle" text-anchor="middle" fill="white" z-index="4">
<tspan class="secondtext" dy="2em">A safe space in your phone</tspan>
</text>
<text x="50%" y ="50%" dominant-baseline="middle" text-anchor="middle" fill="white" z-index="4">
<tspan class="thirdtext" dy="5.5em">With built-in crisis plan tools, emergency resources, coping skills, and virtual grounding box</tspan>
</text>
<defs>
<filter id="gooey" height="130%">
<feGaussianBlur in="SourceGraphic" stdDeviation="15" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="goo" />
</filter>
</defs>
<mask id="mask" x="0" y="0">
<g style="filter: url(#gooey)">
<circle class="blob" cx="10%" cy="10%" r="80" fill="white" stroke="white"/>
<circle class="blob" cx="50%" cy="10%" r="40" fill="white" stroke="white"/>
<circle class="blob" cx="17%" cy="15%" r="70" fill="white" stroke="white"/>
<circle class="blob" cx="90%" cy="20%" r="120" fill="white" stroke="white"/>
<circle class="blob" cx="30%" cy="25%" r="30" fill="white" stroke="white"/>
<circle class="blob" cx="50%" cy="60%" r="80" fill="white" stroke="white"/>
<circle class="blob" cx="70%" cy="90%" r="10" fill="white" stroke="white"/>
<circle class="blob" cx="90%" cy="60%" r="90" fill="white" stroke="white"/>
<circle class="blob" cx="30%" cy="90%" r="80" fill="white" stroke="white"/>
<circle class="blob" cx="10%" cy="10%" r="80" fill="white" stroke="white"/>
<circle class="blob" cx="50%" cy="10%" r="20" fill="white" stroke="white"/>
<circle class="blob" cx="17%" cy="15%" r="70" fill="white" stroke="white"/>
<circle class="blob" cx="40%" cy="20%" r="120" fill="white" stroke="white"/>
<circle class="blob" cx="30%" cy="25%" r="30" fill="white" stroke="white"/>
<circle class="blob" cx="80%" cy="60%" r="80" fill="white" stroke="white"/>
<circle class="blob" cx="17%" cy="10%" r="100" fill="white" stroke="white"/>
<circle class="blob" cx="40%" cy="60%" r="90" fill="white" stroke="white"/>
<circle class="blob" cx="10%" cy="50%" r="80" fill="white" stroke="white"/>
</g>
</mask>
</svg>
</section>
<!--================End Slider Area =================-->
<!--================Service Area =================-->
<!-- <section class="our_service_area">
<div class="container">
<div class="main_title">
<h2>Our Services</h2>
</div>
<div class="row">
<div class="col-md-4">
<div class="service_item">
<i class="lnr lnr-cloud-check"></i>
<a href="#"><h3>Data In Cloud</h3></a>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since .</p>
</div>
</div>
<div class="col-md-4">
<div class="service_item">
<i class="lnr lnr-phone"></i>
<a href="#"><h3>24/7 Support</h3></a>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since .</p>
</div>
</div>
<div class="col-md-4">
<div class="service_item">
<i class="lnr lnr-laptop"></i>
<a href="#"><h3>Fully Responsive</h3></a>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since .</p>
</div>
</div>
</div>
</div>
</section> -->
<!--================End Service Area =================-->
<!--================Feature Area =================-->
<section class="feature_area" id="feature">
<div class="container">
<div class="main_title">
<h2>Features</h2>
</div>
<div class="row">
<div class="col-md-4">
<div class="left_side_feature">
<div class="media">
<div class="media-body">
<a><h4>Crisis Plan Creator</h4></a>
<p>Swipe through each page to customize your crisis plan step by step</p>
</div>
<div class="media-right">
<i class="lnr lnr-file-add"></i>
</div>
</div>
</div>
<div class="left_side_feature">
<div class="media">
<div class="media-body">
<a><h4>Sharing Tools</h4></a>
<p>Share your crisis plan with friends, family, and law enforcement, or save it on your phone or Drive</p>
</div>
<div class="media-right">
<i class="lnr lnr-laptop-phone"></i>
</div>
</div>
</div>
<div class="left_side_feature">
<div class="media">
<div class="media-body">
<a><h4>Emergency Resources</h4></a>
<p>Connect to local hospitals, phone lines, and resources with just one click</p>
</div>
<div class="media-right">
<i class="lnr lnr-phone"></i>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="feature_mobile">
<img src="theme/img/feature-m-slider/feature-m-slider-shap.png" alt="">
<div class="feature_mobile_slider owl-carousel">
<div class="item"><img src="theme/img/feature-m-slider/feature1b.jpg" alt=""></div>
<div class="item"><img src="theme/img/feature-m-slider/feature2b.jpg" alt=""></div>
<div class="item"><img src="theme/img/feature-m-slider/feature3b.jpg" alt=""></div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="right_side_feature">
<div class="media">
<div class="media-left">
<i class="lnr lnr-cog"></i>
</div>
<div class="media-body">
<a><h4>Coping Skills</h4></a>
<p>Flip through cards to view some of the most trusted, psychiatrist-approved coping skills to use in any emergency</p>
</div>
</div>
</div>
<div class="right_side_feature">
<div class="media">
<div class="media-left">
<i class="lnr lnr-picture"></i>
</div>
<div class="media-body">
<a><h4>Virtual Grounding Box</h4></a>
<p>Add a photo and song to remind yourself of a safe, calming memory you can revisit at any time</p>
</div>
</div>
</div>
<div class="right_side_feature">
<div class="media">
<div class="media-left">
<i class="lnr lnr-gift"></i>
</div>
<div class="media-body">
<a><h4>Personal Affirmations</h4></a>
<p>Read through a variety of affirmations and motivational quotes from Sully the Seahorse</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--================End Feature Area =================-->
<!--================Works Area =================-->
<section class="works_area">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="works_left_img">
<img src="theme/img/works/work-1.jpg" alt="">
</div>
</div>
<div class="col-md-6">
<div class="works_right_content">
<div class="content_title">
<h2>How it works</h2>
</div>
<p>Anemone combines many of the skills and tools taught in most psychiatric inpatient and outpatient settings. The app focuses on the idea of creating a crisis plan one can refer back to during a mental health emergency, and introduces users to many industry-wide concepts such as deep breathing, mindfulness, grounding, and diversion.</p>
<a href="https://itunes.apple.com/us/app/anemone-crisis-app/id1454962318"><img src="theme/img/works/apple-btn.jpg" alt=""></a>
<a href="#"><img src="theme/img/googleplaycomingsoon.png" style="width:157px" alt=""></a>
</div>
</div>
</div>
</div>
</section>
<!--================End Works Area =================-->
<!--================Screenshot Area =================-->
<section class="screenshot_area" id="screenshot">
<div class="main_title">
<h2>Screenshots</h2>
</div>
<div class="screenshot_inner">
<div class="screenshot_slider owl-carousel">
<div class="item">
<img src="theme/img/screenshot/screenshot1.jpg" alt="">
</div>
<div class="item">
<img src="theme/img/screenshot/screenshot2.jpg" alt="">
</div>
<div class="item">
<img src="theme/img/screenshot/screenshot3.jpg" alt="">
</div>
<div class="item">
<img src="theme/img/screenshot/screenshot4.jpg" alt="">
</div>
<div class="item">
<img src="theme/img/screenshot/screenshot5.jpg" alt="">
</div>
<div class="item">
<img src="theme/img/screenshot/screenshot2.jpg" alt="">
</div>
<div class="item">
<img src="theme/img/screenshot/screenshot3.jpg" alt="">
</div>
<div class="item">
<img src="theme/img/screenshot/screenshot4.jpg" alt="">
</div>
</div>
</div>
</section>
<!--================End Screenshot Area =================-->
<!--================Our Benefits Area =================-->
<!-- <section class="our_benefits_area display_table">
<div class="our_benefits_inner display_table_row">
<div class="benefits_left display_table_cell">
<img src="theme/img/benefits/benefits-left-1.jpg" alt="">
</div>
<div class="benefits_right display_table_cell">
<div class="benefits_content">
<div class="content_title">
<h2>Our Benefits</h2>
</div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis no trud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>
<div class="benefits_collaps">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Benefit 1
<i class="ti-plus"></i>
<i class="ti-minus"></i>
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
There are many variations of pasages of Lorem Ipsum Ipsum available, but the majority have suffered alte ation in some form, by injected humour.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwo">
<h4 class="panel-title">
<a class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Benefit 2
<i class="ti-plus"></i>
<i class="ti-minus"></i>
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body">
There are many variations of pasages of Lorem Ipsum Ipsum available, but the majority have suffered alte ation in some form, by injected humour.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Benefit 3
<i class="ti-plus"></i>
<i class="ti-minus"></i>
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
There are many variations of pasages of Lorem Ipsum Ipsum available, but the majority have suffered alte ation in some form, by injected humour.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="our_benefits_area display_table">
<div class="our_benefits_inner display_table_row">
<div class="benefits_left display_table_cell">
<div class="benefits_content">
<div class="content_title">
<h2>Why is the best</h2>
</div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis no trud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>
<ul>
<li><a href="#"><i class="lnr lnr-chevron-right"></i>Lorem ipsum dolor sit amet, consectetur adipiscing elit</a></li>
<li><a href="#"><i class="lnr lnr-chevron-right"></i>In our work we try to use only the most modern</a></li>
<li><a href="#"><i class="lnr lnr-chevron-right"></i>We want the template you downloaded look unique</a></li>
<li><a href="#"><i class="lnr lnr-chevron-right"></i>The given template is armed with the number of settings</a></li>
<li><a href="#"><i class="lnr lnr-chevron-right"></i>Innovative solutions and simple mathematically calculated</a></li>
<li><a href="#"><i class="lnr lnr-chevron-right"></i>Emotions that causes your project in visitor</a></li>
<li><a href="#"><i class="lnr lnr-chevron-right"></i>The meeting of developers of cross-platform apps</a></li>
</ul>
</div>
</div>
<div class="benefits_right display_table_cell">
<div class="row m0 video_row">
<iframe id="video" src="http://www.youtube.com/embed/bgTdTBpQyi8?enablejsapi=1&html5=1&rel=0&fs=0&loop=1&showinfo=0&disablekb=1&controls=0&color=white&playlist=bgTdTBpQyi8"></iframe>
<div class="overlay" id="video_overlay">
<div class="overlay_bg"></div>
<div class="play_pause row m0">
<i class="ti-control-play" aria-hidden="true" id="play_btn"></i>
<i class="ti-control-pause" aria-hidden="true" id="pause_btn"></i>
<div class="video_content">
<h4>Play the Video</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--================End Our Benefits Area =================-->
<!--================Detail Area =================-->
<!-- <section class="detail_doc_area">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="left_detail_content">
<div class="content_title">
<h2>Detailed documentation</h2>
</div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis no trud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
<a class="read_more" href="#">Read More</a>
</div>
</div>
<div class="col-md-6">
<div class="right_detail_img">
<img src="theme/img/right_detail_img.png" alt="">
</div>
</div>
</div>
</div>
</section> -->
<!--================End Detail Area =================-->
<!--================Download Area =================-->
<section class="download_area" id="download">
<div class="container">
<div class="download_inner">
<h4>Get the app for android & iOS</h4>
<h3>Download Now</h3>
</br>
</br>
<!-- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis no trud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p> -->
<a href="https://itunes.apple.com/us/app/anemone-crisis-app/id1454962318"><img src="theme/img/download-1.png" alt=""></a>
<a href="https://play.google.com/store?hl=en"><img src="theme/img/googleplaycomingsoon.png" style="width:200px" alt=""></a>
</div>
</div>
</section>
<!--================End Download Area =================-->
<!--================Subscrib Area =================-->
<!-- <section class="subscrib_area">
<div class="container">
<div class="content_title">
<h2>Subscribe Today</h2>
</div>
<div class="input-group subscrib_form">
<input type="text" class="form-control" placeholder="Enter Email">
<span class="input-group-btn">
<button class="btn btn-default" onclick="openPOPUP();" type="button">Subscribe</button>
</span>
</div>
</div>
</section> -->
<!--================End Subscrib Area =================-->
<!--================Asked Question Area =================-->
<section class="asked_question_area" id="questions">
<div class="container">
<div class="content_title_middle">
<h2>Frequently Asked Questions</h2>
<p>Here are some answers to common questions you might have:</p>
</div>
</div>
<div class="question_inner">
<div class="left_question">
<div class="left_question_inner">
<div class="panel-group" id="askquestion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="questions1">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#askquestion" href="#question1" aria-expanded="true" aria-controls="question1">
How much does Anemone cost?
<i class="fa fa-angle-down" aria-hidden="true"></i>
<i class="fa fa-angle-up" aria-hidden="true"></i>
</a>
</h4>
</div>
<div id="question1" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="questions1">
<div class="panel-body">
Anemone is completely free, on both iOS and Android. It was designed to help people and any cost would be prohibitive.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="questions2">
<h4 class="panel-title">
<a class="collapsed" role="button" data-toggle="collapse" data-parent="#askquestion" href="#question2" aria-expanded="false" aria-controls="question2">
What is a crisis plan?
<i class="fa fa-angle-down" aria-hidden="true"></i>
<i class="fa fa-angle-up" aria-hidden="true"></i>
</a>
</h4>
</div>
<div id="question2" class="panel-collapse collapse" role="tabpanel" aria-labelledby="questions2">
<div class="panel-body">
A crisis plan contains basic steps/symptoms to be aware of and enables the user to not only gauge how severe their case is, but also provides them with easy resources for getting help. For example, a crisis plan contains a list of early symptoms they may have, as well as crisis signs. Depending on the symptoms presented in their situation, they can figure out if they are truly in a crisis. The crisis plan also includes steps such as ways to cope with early warning signs, people they can call in a crisis, emergency number and hotlines, preferred treatment facilities, and past and current medications. A crisis plan can be truly lifesaving, if prepared in advance.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="questions3">
<h4 class="panel-title">
<a class="collapsed" role="button" data-toggle="collapse" data-parent="#askquestion" href="#question3" aria-expanded="false" aria-controls="question3">
Who should one share their crisis plan with?
<i class="fa fa-angle-down" aria-hidden="true"></i>
<i class="fa fa-angle-up" aria-hidden="true"></i>
</a>
</h4>
</div>
<div id="question3" class="panel-collapse collapse" role="tabpanel" aria-labelledby="questions3">
<div class="panel-body">
Crisis plans work best if you share them with your loved ones, whether that is family or friends, or both. It can also be useful to have your crisis plan easily be easily accessible on your phone so you can share it with law enforcement as well.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="questions4">
<h4 class="panel-title">
<a class="collapsed" role="button" data-toggle="collapse" data-parent="#askquestion" href="#question4" aria-expanded="false" aria-controls="question4">
What is a grounding box?
<i class="fa fa-angle-down" aria-hidden="true"></i>
<i class="fa fa-angle-up" aria-hidden="true"></i>
</a>
</h4>
</div>
<div id="question4" class="panel-collapse collapse" role="tabpanel" aria-labelledby="questions4">
<div class="panel-body">
A virtual grounding box contains a photo and song the user can select that reminds them of a good memory or positive emotion. In times of crisis, they can “reopen” their grounding box and see the photo and hear the music and hopefully be reminded of that positive memory.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="questions5">
<h4 class="panel-title">
<a class="collapsed" role="button" data-toggle="collapse" data-parent="#askquestion" href="#question5" aria-expanded="false" aria-controls="question5">
What is your Privacy Policy? <i class="fa fa-angle-down" aria-hidden="true"></i>
<i class="fa fa-angle-up" aria-hidden="true"></i>
</a>
</h4>
</div>
<div id="question5" class="panel-collapse collapse" role="tabpanel" aria-labelledby="questions5">
<div class="panel-body">
You can view our Privacy Policy <a href="PrivacyPolicy.html">here</a>
</div>
</div>
</div> </div>
</div>
</div>
<div class="right_question_img">
<img src="theme/img/doctor2.png" alt="">
</div>
</div>
</section>
<!--================End Asked Question Area =================-->
<section class="download_area" id="media">
<div class="container">
<div class="download_inner" style="max-width:2000px">
<h3>Featured By</h3>
</br>
</br>
<!-- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis no trud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p> -->
<a href="https://www.youtube.com/watch?v=j5uVK2EDhhU"><img src="theme/img/tedxuiuc.png" style="width:150px" alt=""></a>
<a href="https://medium.com/wogrammer/finding-her-balance-d20131595856"><img src="theme/img/wogrammer.png" style="width:150px" alt=""></a>
<a href="https://tec.illinois.edu/news/articles-from-tec/36379"><img src="theme/img/tec.png" style="width:150px" alt=""></a>
<a href="https://www.mhanational.org/blog/cmhic-2019-6-student-leaders-transforming-mental-health-campus"><img src="theme/img/mha.jpg" style="width:150px" alt=""></a>
<a href="https://www.smilepolitely.com/culture/finding_a_home_base_in_crisis_with_anemone/"><img src="theme/img/smilepolitely.png" style="width:150px" alt=""></a>
<a href="https://dailyillini.com/news/2020/02/06/students-administration-tackle-university-mental-health-misconceptions/"><img src="theme/img/dailyillini.jpg" style="width:150px" alt=""></a>
<a href="https://www.teenvogue.com/story/virtual-therapy-coronavirus-isolation"><img src="theme/img/teenvogue.jpg" style="width:150px" alt=""></a>
</div>
</div>
</section>
<!--================Map Area =================-->
<section class="map_area" id="contact">
<div class="contact_info">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="contact_details">
<div class="media">
<div class="media-left">
<i class="fa fa-map-marker"></i>
</div>
<div class="media-body">
<h4>Our Location</h4>
<h5>2498 Southvue Drive, Pittsburgh, PA 15241</h5>
</div>
</div>
<div class="media">
<div class="media-left">
<i class="fa fa-phone"></i>
</div>
<div class="media-body">
<h4>Call Us On</h4>
<h5>(+1) 412 228 1989</h5>
</div>
</div>
<div class="media">
<div class="media-left">
<i class="fa fa-envelope"></i>
</div>
<div class="media-body">
<h4>Send Your Message</h4>
<h5>[email protected]</h5>
</div>
</div>
<div class="media">
<div class="media-left">
<i class="fa fa-clock-o"></i>
</div>
<div class="media-body">
<h4>Our Working Hours</h4>
<h5>Mon-Fri 9.00AM to 5.00PM</h5>
</div>
</div>
<ul>
<li><a href="https://www.facebook.com/pg/anemoneapp/"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!--================End Map Area =================-->
<!--================Footer Area =================-->
<footer class="footer_area">
<div class="container">
<div class="pull-left">
<h4><p>Copyright @2018 All rights reserved | This template is made with <i class="fa fa-heart-o" aria-hidden="true"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a></p> </h4>
</div>
<!-- <div class="pull-right">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Policy</a></li>
<li><a href="#">Terms</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div> -->
</div>
</footer>
<!--================End Footer Area =================-->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="theme/js/jquery-2.1.4.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="theme/js/bootstrap.min.js"></script>
<!--<script src="theme/js/require.js"></script>-->
<script src="theme/vendors/revolution/js/jquery.themepunch.tools.min.js"></script>
<script src="theme/vendors/revolution/js/jquery.themepunch.revolution.min.js"></script>
<!--RS5.0 Extensions-->
<script src="theme/vendors/revolution/js/extensions/revolution.extension.actions.min.js"></script>
<script src="theme/vendors/revolution/js/extensions/revolution.extension.carousel.min.js"></script>
<script type="text/javascript" src="theme/vendors/revolution/js/extensions/revolution.extension.kenburn.min.js"></script>
<script type="text/javascript" src="theme/vendors/revolution/js/extensions/revolution.extension.layeranimation.min.js"></script>
<script type="text/javascript" src="theme/vendors/revolution/js/extensions/revolution.extension.migration.min.js"></script>
<script src="theme/vendors/revolution/js/extensions/revolution.extension.navigation.min.js"></script>
<script src="theme/vendors/revolution/js/extensions/revolution.extension.parallax.min.js"></script>
<script src="theme/vendors/revolution/js/extensions/revolution.extension.slideanims.min.js"></script>
<script src="theme/vendors/revolution/js/extensions/revolution.extension.video.min.js"></script>
<!-- Extra plugin js -->
<script src="theme/vendors/owlcarousel/owl.carousel.min.js"></script>
<script src="theme/vendors/flipster/jquery.flipster.min.js"></script>
<!-- contact js -->
<script src="theme/js/jquery.form.js"></script>
<script src="theme/js/jquery.validate.min.js"></script>
<script src="theme/js/contact.js"></script>
<!--gmaps Js-->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCjCGmQ0Uq4exrzdcL6rvxywDDOvfAu6eE"></script>
<script src="theme/js/gmaps.min.js"></script>
<script src="theme/js/video_player.js"></script>
<script src="theme/js/theme.js"></script>
</body
</html>