blob: c9375e52a2a42ca5485943c7c4ef1df931d8744e (
plain) (
blame)
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
|
<footer class="site-footer">
<div class="container site-footer__inner">
<section class="site-footer__col" aria-label="Contact">
<h2 class="site-footer__heading">Contact</h2>
<address class="site-footer__list">
<div class="site-footer__item border-darkish">
<i class="bi bi-telephone" aria-hidden="true"></i>
<a class="site-footer__link" href="tel:12084994517">(208) 499 - 4517</a>
</div>
<div class="site-footer__item border-darkish">
<i class="bi bi-mailbox" aria-hidden="true"></i>
<a class="site-footer__link" href="mailto:contact@mistymountainstherapy.com"
>contact@mistymountainstherapy.com</a
>
</div>
<div class="site-footer__item">
<i class="bi bi-pin-map" aria-hidden="true"></i>
<a
class="site-footer__link"
href="https://maps.app.goo.gl/s1AFqfKvUKgXDCrq5"
target="_blank"
rel="noopener noreferrer"
>
<span>534 Trejo Street, Suite 200F</span><br />
<span>Rexburg, ID, 83440</span>
</a>
</div>
</address>
</section>
<section class="site-footer__col" aria-label="About">
<h2 class="site-footer__heading">About</h2>
<div class="site-footer__item border-darkish">
<a
class="site-footer__link"
href="https://docs.google.com/document/d/10S_-yfiaDZnuD-0tvXTEIIyZiErVwrTj0y_0JiRT5_U/edit?usp=sharing"
target="_blank"
rel="noopener noreferrer"
>Privacy Policy</a
>
</div>
<p class="text-muted" style="margin-top: var(--space-4)">
Copyright © 2024 Misty Mountains Therapy
</p>
<p class="text-muted">High quality therapy services for the greater Rexburg area.</p>
</section>
</div>
</footer>
<style>
.site-footer {
margin-top: auto;
background: #101413;
color: white;
padding-block: var(--space-6);
}
.site-footer__inner {
display: grid;
grid-template-columns: 1fr;
gap: var(--space-6);
}
.site-footer__heading {
margin: 0 0 var(--space-3);
font-size: 1.6rem;
color: white;
}
.site-footer__list {
margin: 0;
font-style: normal;
display: grid;
gap: var(--space-2);
}
.site-footer__item {
display: flex;
align-items: flex-start;
gap: var(--space-3);
padding: var(--space-2);
}
.site-footer__item i {
margin-top: 0.2rem;
color: rgba(255, 255, 255, 0.85);
}
.site-footer__link {
color: inherit;
text-decoration: none;
}
.site-footer__link:hover {
text-decoration: underline;
text-decoration-thickness: 2px;
text-underline-offset: 0.18em;
}
@media (min-width: 768px) {
.site-footer__inner {
grid-template-columns: 1fr 1fr;
align-items: start;
}
}
</style>
|