@charset "UTF-8";
/** # CSS RESET **/
/*#region*/
*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* prettier-ignore */
html, body, div, form, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, label, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

/* prettier-ignore */
main, article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block;
}

/* prettier-ignore */
address, button, input, select, textarea, optgroup {
  margin: 0;
  padding: 0;
  border: none;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  line-height: 1.15;
  background-color: transparent;
  color: inherit;
}

button {
  -webkit-appearance: button;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

small {
  font-size: 80%;
}

/* prettier-ignore */
ul, ol {
  list-style-position: outside;
  list-style-type: none;
  list-style: none;
} /* disc or decimal if ya want to */
/* prettier-ignore */
b, strong {
  font-weight: bolder;
}

/* prettier-ignore */
u {
  text-decoration: underline;
}

/* prettier-ignore */
i {
  font-style: italic;
}

/* prettier-ignore */
em {
  font-style: italic;
  font-weight: bold;
}

/* prettier-ignore */
a, a:visited {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}

/* prettier-ignore */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  box-shadow: none;
  outline: #000 dotted 2px;
  outline-offset: 0.02em;
}

img {
  display: inline-block;
  border-style: none;
  /* change max-width to `width`100% to allow images to scale UP */
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  font-size: 100%;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/*#endregion*/
/** # END CSS RESET **/
/** # ~~~ Smooth Scroll Poly Code ~~~ ** */
.smooth-scroll {
  scroll-behavior: smooth;
  /* Additionally specified in custom font-family so polyfill can parse it */
  font-family: "scroll-behavior:smooth";
}

@media (prefers-reduced-motion: reduce) {
  /* Over-ride for anyone who actually sets reduced motion pref */
  .smooth-scroll {
    scroll-behavior: auto;
    font-family: "scroll-behavior: auto";
    -webkit-animation-duration: 0 !important;
            animation-duration: 0 !important;
  }
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* # SPACING AND TYPOGRAPHY */
/*#region*/
:root {
  --font-one: "Barlow", sans-serif;
  --font-two: "Barlow Semi Condensed", sans-serif;
  --anim-span-spacing: 0.9em;
  /* prettier-ignore */
  --vert-unit: 36px;
  --vert-xxs: calc(var(--vert-unit) * 0.25);
  --vert-xs: calc(var(--vert-unit) * 0.5);
  --vert-sm: calc(var(--vert-unit) * 0.75);
  --vert-md: calc(var(--vert-unit));
  --vert-lg: calc(var(--vert-unit) * 2);
  --vert-xl: calc(var(--vert-unit) * 3);
  --vert-xxl: calc(var(--vert-unit) * 4);
  --vert-3xl: calc(var(--vert-unit) * 5);
  --header-height: var(--vert-lg);
}
@media (min-width: 576px) {
  :root {
    --vert-unit: calc(36px + 6 * ((100vw - 576px) / 416));
  }
}
@media (min-width: 992px) {
  :root {
    --vert-unit: 42px;
  }
}

html {
  /* prettier-ignore */
  font-size: 24px;
  /* prettier-ignore */
  line-height: 1.5;
}
@media (min-width: 576px) {
  html {
    font-size: calc(24px + 6 * ((100vw - 576px) / 192));
  }
}
@media (min-width: 768px) {
  html {
    font-size: 30px;
  }
}
@media (min-width: 576px) {
  html {
    line-height: calc(1.5 + -0.1 * ((100vw - 576px) / 192));
  }
}
@media (min-width: 768px) {
  html {
    line-height: 1.4;
  }
}

body {
  font-family: var(--font-one);
  text-align: center;
}

p {
  text-align: left;
  font-weight: 500;
  max-width: 960px;
  text-indent: 0.5em;
}

h1,
h2,
h3 {
  font-family: var(--font-two);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

h4,
h5 {
  font-family: var(--font-one);
  font-weight: 700;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.2rem;
}

.txt-white {
  color: #fdfefd;
}

.mini-margin-left {
  margin-left: 5px;
}

.caps {
  text-transform: uppercase;
}

.centered {
  text-align: center;
}

/*#endregion*/
/* BODY BODY BODY BODY */
body {
  color: #020503;
  background: linear-gradient(120deg, #80b993 0%, #5FA777 40%, #6fb085 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: auto;
  /* CSS Smooth Scroll */
  scroll-behavior: smooth;
}

main {
  overflow-y: auto;
  margin: 0 auto;
  padding-bottom: var(--size-lg);
}

section {
  padding-top: calc(var(--header-height) + var(--vert-xxs));
  padding-left: var(--vert-xs);
  padding-right: var(--vert-xs);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
section::after {
  content: "";
  width: 50%;
  transform: translate(50%, 0%);
  border-top: 4px double #020503;
}
@media (min-width: 576px) {
  section::after {
    display: none;
  }
}

.content-box {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
@media (min-width: 576px) {
  .content-box {
    min-height: 80vh;
    border-radius: 5px;
    justify-content: space-around;
    padding: 1em;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
  }
}

.menu-toggle-btn {
  height: var(--header-height);
  width: var(--header-height);
  background-color: #020503;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.menu-toggle-btn:focus {
  outline: none;
}

.menu-toggle-btn-span {
  color: #80b993;
  font-size: 0.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu-toggle-btn-span::before, .menu-toggle-btn-span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #5FA777;
  left: 50%;
  transition: all 0.2s;
}
.menu-toggle-btn-span::before {
  top: 50%;
  transform: translate(-50%, -1em);
}
.menu-toggle-btn-span::after {
  bottom: 50%;
  transform: translate(-50%, 1em);
}

.menu-toggle-btn:hover .menu-toggle-btn-span::before,
.menu-toggle-btn:focus .menu-toggle-btn-span::before {
  height: 2px;
  transform: translate(-50%, -1em);
}
.menu-toggle-btn:hover .menu-toggle-btn-span::after,
.menu-toggle-btn:focus .menu-toggle-btn-span::after {
  height: 2px;
  transform: translate(-50%, 1em);
}

.menu-toggle-btn.menu-open .menu-toggle-btn-span {
  color: transparent;
}
.menu-toggle-btn.menu-open .menu-toggle-btn-span::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.menu-toggle-btn.menu-open .menu-toggle-btn-span::after {
  transform: translate(-50%, 50%) rotate(135deg);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: var(--header-height);
  width: 100%;
  z-index: 999; /* moves above content */
  color: #fdfefd;
  background: #427854;
  opacity: 0.95; /* lets user see content scroll by */
  box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.75); /* styling */
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.header .header__mobile-title {
  /* Only visible for mobile */
  color: #020503;
  font-family: var(--font-one);
  width: 100%;
  text-shadow: 1px 1px 1px #6b9b7b, 0px 0px 4px #6b9b7b;
}

.header__logo--container {
  width: var(--header-height);
  height: var(--header-height);
  position: absolute;
  left: 0;
}
@media screen and (min-width: 768px) {
  .header__logo--container {
    display: inline-block;
  }
}
.header__logo--container #svg-toplogo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  fill: #80b993;
  stroke: #020503;
}

.navbar {
  position: absolute;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  width: 100%;
  background-color: #020503;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.6rem;
  /*prettier-ignore*/
  transform: scale(0);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.4s ease-in-out;
}
@media (min-width: 768px) {
  .navbar {
    font-size: calc(22px + 10 * ((100vw - 768px) / 224));
  }
}
@media (min-width: 992px) {
  .navbar {
    font-size: 32px;
  }
}
.navbar ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.navbar ul li {
  flex: auto;
  display: flex;
}
.navbar ul li a {
  flex: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar ul li a:hover, .navbar ul li a:focus {
  background-color: #5FA777;
}
.navbar ul li a:active {
  color: #427854;
  background: #80b993;
}

.navbar.mobile-menu-open {
  opacity: 1;
  transform: scale(1);
  position: absolute;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
@media screen and (min-width: 768px) {
  .header__mobile-title,
.header__mobile-title-link-wrapper,
.menu-toggle-btn {
    display: none;
  }
  .navbar {
    opacity: 1; /* Undoes Mobile whatnot */
    transform: scale(1); /* Undoes Mobile whatnot */
    width: calc(100% - var(--header-height));
    height: var(--header-height);
    top: 0;
    right: 0;
    color: #020503;
    background-color: #80b993;
  }
  .navbar ul {
    height: 100%;
    flex-direction: row;
  }
  .navbar ul li a {
    position: relative;
  }
  .navbar ul li a::before, .navbar ul li a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #e3efe7;
    left: 0;
    /* Animationy Bit: */
    transform: scaleX(0);
    transition: all 0.4s;
  }
  .navbar ul li a::before {
    top: 20%; /* or try -25%; */
    transform-origin: left;
  }
  .navbar ul li a::after {
    top: 80%; /* or it could be `bottom:0;`, or try 125% */
    transform-origin: right;
  }
  .navbar ul li a:hover::before, .navbar ul li a:hover::after, .navbar ul li a:focus::before, .navbar ul li a:focus::after {
    transform: scaleX(1);
  }
}
.navbar {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.6rem;
  /*prettier-ignore*/
}
@media (min-width: 768px) {
  .navbar {
    font-size: calc(22px + 10 * ((100vw - 768px) / 224));
  }
}
@media (min-width: 992px) {
  .navbar {
    font-size: 32px;
  }
}

/* # SECTION - HOME */
/*#region*/
#svg-landing-logo {
  height: var(--vert-xl);
}

@media screen and (min-width: 768px) {
  #home .content-box {
    justify-content: space-evenly;
  }
}
#home h2 {
  margin-bottom: var(--vert-xxs);
}
#home::after {
  border: none;
}

.home__logo--title {
  margin-bottom: var(--vert-xxs);
}

.home__description {
  letter-spacing: 0.48px;
  font-weight: bold;
}

.chevron::before {
  border-style: solid;
  border-width: 0.5rem 0.5rem 0 0;
  content: "";
  display: inline-block;
  height: var(--vert-md);
  width: var(--vert-md);
  bottom: var(--vert-xs);
  margin-top: 1em;
  position: relative;
  transform: rotate(135deg);
  align-self: bottom;
  -webkit-animation: chevronBounce 2s infinite linear alternate;
          animation: chevronBounce 2s infinite linear alternate;
}

@-webkit-keyframes chevronBounce {
  0%, 100% {
    opacity: 1;
    transform: rotate(135deg) translate(0, 0);
  }
  50% {
    opacity: 0.7;
    transform: rotate(135deg) scale(0.9) translate(-5px, 5px);
  }
}

@keyframes chevronBounce {
  0%, 100% {
    opacity: 1;
    transform: rotate(135deg) translate(0, 0);
  }
  50% {
    opacity: 0.7;
    transform: rotate(135deg) scale(0.9) translate(-5px, 5px);
  }
}
/*#endregion*/
/* # SECTION - LOCATION */
#location section {
  padding-top: var(--header-height);
}
#location h3, #location h4 {
  text-shadow: none;
}
#location .content-box > * {
  flex-grow: 1;
}
#location .loc--address {
  margin-bottom: var(--vert-xxs);
}
#location .loc--address .loc--address_span {
  display: block;
}
#location .loc--xy-flex-container {
  flex-grow: 8;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  #location .loc--xy-flex-container {
    width: 90%;
    flex-direction: row;
    gap: 0.5rem;
  }
}
#location .loc--map-wrapper {
  flex-grow: 1;
  flex-basis: 50%;
}
@media screen and (max-width: 768px) {
  #location .loc--map-wrapper {
    position: relative;
    padding-bottom: 35%; /* ASPECT RATIOS: 75%=600:450; 56.25%; = 900:600 */
    overflow: hidden;
  }
  #location .loc--map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
#location .loc--details {
  line-height: 1.15;
  flex-grow: 1;
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
#location .loc--details h4 {
  font-family: var(--font-two);
  font-weight: normal;
}
#location .loc--details p {
  text-indent: 0em;
  text-align: center;
}

/* # SECTION - ABOUT */
/*#region*/
.about__container {
  max-width: 960px;
}
.about__container img {
  border-radius: 5px;
  width: var(--vert-3xl);
}
@media screen and (min-width: 576px) {
  .about__container img {
    float: left;
    width: 9em;
    margin-top: var(--vert-xxs);
    margin-right: var(--vert-xs);
    margin-bottom: var(--vert-xxs);
    margin-left: 0;
  }
}
.about__container p {
  text-indent: 1em;
  margin-bottom: var(--vert-xs);
}
.about__container p:first-of-type {
  text-indent: 0.72em;
}

/*#endregion*/
/* # SECTION - Therapies */
/*#region*/
.therapies__services-list--outter-wrapper {
  margin-bottom: var(--vert-xxs);
}

.therapies__services-list {
  margin: var(--vert-xxs) auto;
  padding: var(--vert-xs);
  border-radius: 5px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}
.therapies__services-list h3 {
  text-shadow: none;
}
.therapies__services-list ul {
  font-family: var(--font-one);
  text-align: left;
  padding-left: var(--vert-xs);
}
.therapies__services-list ul li {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: var(--vert-sm);
}
.therapies__services-list .abbrv {
  font-size: 0.75em;
  font-weight: bold;
  vertical-align: 0.1em;
}

@media screen and (min-width: 768px) {
  .therapies__services-list--outter-wrapper {
    display: flex;
    margin-bottom: 0;
  }
  .therapies__services-list--outter-wrapper .therapies__services-list {
    flex-basis: 48%;
  }
  .therapies__services-list--outter-wrapper .therapies__services-list ul {
    padding-left: 0;
  }
}
/*#endregion*/
/* # SECTION - CONTACT */
/*#region*/
#contact svg {
  height: 1em;
  width: 1em;
  margin-right: 0.4em;
}
#contact .contact--wrapper {
  flex-grow: 1;
  display: flex;
  justify-content: space-evenly;
  align-content: center;
  align-items: center;
  flex-flow: column nowrap;
}
#contact .contact--detail {
  display: flex;
  align-items: baseline;
}

/*#endregion*/
/* #END SECTION - CONTACT */
/* # SECTION - BILLING */
/*#region*/
#billing .content-box {
  margin-bottom: var(--vert-xs);
}

.billing--info {
  flex-grow: 1;
  display: flex;
  justify-content: space-evenly;
  align-content: center;
  align-items: center;
  flex-flow: column nowrap;
}
.billing--info ul {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 700;
}
.billing--info ul li {
  margin: var(--vert-md);
}
.billing--info ul li::before {
  content: "⨳";
  padding-right: 5px;
}

/*#endregion*/
footer {
  font-size: var(--vert-xxs);
}/*# sourceMappingURL=main.css.map */