/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #whatIsMyo {
    padding: var(--sectionPadding);
  }
  #whatIsMyo .cs-container {
    width: 100%;
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
  }
  #whatIsMyo .cs-content {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #whatIsMyo .cs-topper {
    color: var(--secondary);
  }
  #whatIsMyo .cs-title {
    color: var(--black);
    font: 900 clamp(42px, 4vw, 48px)/calc(1em + 6px) var(--font-rem);
    max-width: 100%;
  }
  #whatIsMyo .cs-text {
    max-width: none;
    font: 400 16px/1.75rem var(--font-poppins);
  }
  #whatIsMyo h2 {
    color: var(--black);
    font: 500 clamp(32px, 4vw, 36px)/calc(1em + 6px) var(--font-rem);
    text-align: left;
    width: 100%;
  }
  #whatIsMyo .cs-card-group {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-auto-flow: row;
    gap: 1.75rem;
  }
  #whatIsMyo .cs-item {
    list-style: none;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    grid-column: span 12;
    grid-row: span 1;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s, border-color 0.3s;
  }
  #whatIsMyo .cs-item:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
  }
  #whatIsMyo .cs-h3 {
    font: clamp(1rem, 2vw, 1.4rem)/1.2em var(--font-poppins);
    font-weight: bold;
    text-align: inherit;
    margin: 0 0 1rem;
    color: var(--black);
    transition: color 0.3s;
  }
  #whatIsMyo .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    margin: 0 0 1.5rem 0;
    padding: 0;
    color: var(--bodyTextColor);
  }
  #whatIsMyo .cs-link {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    text-decoration: none;
    margin-top: auto;
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.625rem;
    transition: color 0.3s;
  }
  #whatIsMyo .cs-link:hover .cs-arrow {
    transform: translateX(0.25rem);
  }
  #whatIsMyo .cs-link-text {
    width: fit-content;
  }
  #whatIsMyo .cs-arrow {
    width: 1.25rem;
    height: auto;
    display: block;
    transition: filter 0.3s, transform 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #whatIsMyo .cs-container {
    max-width: 80rem;
  }
  #whatIsMyo .cs-card-group {
    /* 20px - 32px */
    gap: clamp(1.25rem, 3vw, 2rem);
  }
  #whatIsMyo .cs-item {
    padding: 0;
    /* 20px - 32px */
    padding-left: clamp(1.25rem, 3vw, 2rem);
    border: none;
    border-left: 1px solid var(--primary);
    grid-column: span 4;
  }
}
/*-- -------------------------- -->
<---        What is?            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #rightForYou {
    padding: var(--sectionPadding);
    background-color: #EDEAE4;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6.5vw, 4rem);
  }
  #rightForYou .cs-content {
    /* set text align to center if content needs to be center aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #rightForYou .cs-flex-wrapper {
    max-width: 37.5rem;
    /* lets the div's contents act as though it doesn't exist and can be children of the next surrounding parent div, in this case the cs-content. That way we can place the button under the cs-wrapper on mobile, but bring it back under the header on tablet */
    display: contents;
  }
  #rightForYou .cs-topper {
    color: var(--secondary);
  }
  #rightForYou .cs-title {
    color: var(--black);
    margin: 0;
    /* 16px - 32px */
    margin-bottom: clamp(1rem, 3vw, 2rem);
  }
  #rightForYou .cs-wrapper {
    max-width: 39.5rem;
  }
  #rightForYou .cs-text {
    font: 400 1rem/1.75rem var(--font-poppins);
    margin: 0 0 2rem 0;
  }
  #rightForYou .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    margin-top: 2rem;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    color: #fff;
    background-color: var(--secondary);
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #rightForYou .cs-button-solid:hover {
    background-color: var(--primary);
  }
  #rightForYou .cs-button-solid {
    margin: 0;
    display: inline-block;
    order: 2;
  }
  #rightForYou .cs-text {
    max-width: 40rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  #rightForYou .cs-ul {
    max-width: 39.375rem;
    margin: 0 0 2rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #rightForYou .cs-li {
    font-size: var(--bodyFontSize);
    list-style: none;
    line-height: 1.5em;
    width: 100%;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #rightForYou .cs-check-icon {
    width: 1.5rem;
    height: auto;
    /* adds extra space between the icon and top of parent so it's more centered */
    margin-top: 1px;
    display: block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #rightForYou .cs-content {
    text-align: left;
    max-width: 80rem;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    columns: 2;
  }
  #rightForYou .cs-flex-wrapper {
    width: 40vw;
    display: block;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #rightForYou .cs-ul {
    margin: 0;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #rightForYou .cs-ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #rightForYou .cs-li {
    width: 48%;
  }
}
/*-- -------------------------- -->
<---        Guided Therapy      -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #guidedTherapy {
    padding: var(--sectionPadding);
    background-color: #FBF9F5;
    box-sizing: border-box;
  }
  #guidedTherapy .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    /* 32px - 100px top & bottom */
    /* 16px - 32px left & right */
    padding: clamp(2rem, 8vw, 6.25rem) clamp(1rem, 3vw, 4rem);
    background-color: #fff;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 40px - 48px */
    gap: clamp(2.5rem, 5vw, 3rem);
  }
  #guidedTherapy .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #guidedTherapy .cs-text {
    max-width: 40.625rem;
    line-height: 1.75em;
  }
  #guidedTherapy .cs-topper {
    color: var(--secondary);
  }
  #guidedTherapy .cs-title {
    color: var(--black);
  }
  #guidedTherapy .cs-content2 .cs-text {
    margin-bottom: 1rem;
  }
  #guidedTherapy .cs-content2 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #guidedTherapy .cs-flex {
    width: 100%;
    /* 24px - 32px top & bottom */
    /* 16px - 32px left & right */
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 2rem);
    box-sizing: border-box;
    background-color: #FBF9F5;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* 16px - 32px */
    gap: clamp(1rem, 4vw, 2rem);
  }
  #guidedTherapy .cs-h3 {
    font-size: 1.5625rem;
    line-height: 1.2em;
    font-weight: 700;
    /* 16px - 32px */
    margin: 0 0 clamp(1rem, 3vw, 2rem);
    padding-bottom: 1rem;
    border-bottom: 1px solid #D2D8DF;
    color: var(--headerTextColor);
  }
  #guidedTherapy .cs-ul {
    width: 100%;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #guidedTherapy .cs-li {
    font-size: var(--bodyFontSize);
    list-style: none;
    line-height: 1.5em;
    width: 100%;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    /* push icon top the top so if the list item goes to two lines the icon stays at the top */
    align-items: flex-start;
    gap: 0.5rem;
  }
  #guidedTherapy .cs-icon {
    width: 1rem;
    height: auto;
    display: block;
    flex: none;
  }
  #guidedTherapy .cs-link {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    text-decoration: none;
    margin-top: auto;
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.625rem;
    transition: color 0.3s;
  }
  #guidedTherapy .cs-link:hover .cs-arrow {
    transform: translateX(0.25rem);
  }
  #guidedTherapy .cs-link-text {
    width: fit-content;
  }
  #guidedTherapy .cs-arrow {
    width: 1.25rem;
    height: auto;
    display: block;
    transition: filter 0.3s, transform 0.3s;
  }
  #guidedTherapy .cs-picture {
    width: 100%;
    height: 75vw;
    max-width: max-content;
    max-height: 21.875rem;
    border-radius: 1rem;
    /* clips the border radius of the image */
    overflow: hidden;
    display: block;
    order: -1;
    position: relative;
    z-index: 1;
  }
  #guidedTherapy .cs-picture img {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    object-fit: contain;
    margin: 0 auto;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #guidedTherapy .cs-flex {
    flex-direction: row;
    align-items: stretch;
  }
  #guidedTherapy .cs-picture {
    width: 70vw;
    max-width: max-content;
    min-width: 21.875rem;
    height: 28.75rem;
    min-height: 25rem;
    max-height: 100%;
    order: 2;
    overflow: hidden;
  }
  #guidedTherapy .cs-picture img {
    min-height: clamp(6.75rem, 12vw, 10rem);
  }
}
/*-- -------------------------- -->
<---          Process           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #ourProcess {
    padding: var(--sectionPadding);
    background-color: var(--secondary-light);
    position: relative;
    z-index: 1;
  }
  #ourProcess .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #ourProcess .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #ourProcess .cs-topper {
    color: var(--white);
  }
  #ourProcess .cs-title {
    color: var(--bodyTextColorWhite);
  }
  #ourProcess .cs-text {
    color: var(--bodyTextColorWhite);
  }
  #ourProcess .cs-card-group {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    column-gap: 1.25rem;
    row-gap: 2.5rem;
  }
  #ourProcess .cs-item {
    text-align: center;
    list-style: none;
    width: 100%;
    max-width: 25.8125rem;
  }
  #ourProcess .cs-picture {
    width: 6.25rem;
    height: 6.25rem;
    margin: auto;
    margin-bottom: 1.5rem;
    background-color: #fdfaf8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #ourProcess .cs-icon {
    width: auto;
    height: 2.375rem;
    display: block;
  }
  #ourProcess .cs-icon.session {
    height: 3.4375rem;
  }
  #ourProcess .cs-icon.tcc {
    height: 4.0625rem;
  }
  #ourProcess .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 3vw, 1.5625rem);
    font-weight: 700;
    margin: 0;
    margin-bottom: 0.75rem;
    color: #fff;
  }
  #ourProcess .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
  #ourProcess .cs-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.02;
    /* Makes img tag act as a background image */
    object-fit: cover;
    z-index: -1;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #ourProcess .cs-card-group {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
  }
  #ourProcess .cs-item {
    width: 48%;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #ourProcess .cs-item {
    width: clamp(23.45%, 22vw, 23.8%);
  }
}
/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0em) {
  #faq-254 {
    padding: var(--sectionPadding);
    background: #EDEAE4;
  }
  #faq-254 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: 12px;
  }
  #faq-254 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #faq-254 .cs-faq-group {
    padding: 0;
    margin: 0;
    margin-bottom: 3rem;
  }
  #faq-254 .cs-faq-item {
    list-style: none;
    border-bottom: 1px solid #dad9e3;
    transition: border-bottom 0.3s;
  }
  #faq-254 .cs-faq-item.active {
    border-bottom: 1px solid var(--primary);
  }
  #faq-254 .cs-faq-item.active .cs-button:before {
    transform: rotate(180deg);
  }
  #faq-254 .cs-faq-item.active .cs-button:after {
    opacity: 0;
    transform: rotate(360deg);
  }
  #faq-254 .cs-faq-item.active .cs-item-p {
    height: auto;
    /* 12px - 16px */
    margin-bottom: clamp(0.75rem, 1.3vw, 1rem);
    opacity: 1;
  }
  #faq-254 .cs-button {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    /* 12px - 16px */
    padding: clamp(0.75rem, 1.3vw, 1rem) 0;
    background: transparent;
    border: none;
    color: var(--secondary);
    display: block;
    width: 100%;
    position: relative;
  }
  #faq-254 .cs-button:hover {
    cursor: pointer;
  }
  #faq-254 .cs-button:before {
    /* plus sign */
    content: "";
    width: 0.75rem;
    height: 0.125rem;
    background: var(--headerColor);
    opacity: 1;
    position: absolute;
    display: block;
    top: 50%;
    right: 0.25rem;
    transition: transform 0.3s;
  }
  #faq-254 .cs-button:after {
    /* plus sign */
    content: "";
    width: 0.75rem;
    height: 0.125rem;
    background: var(--headerColor);
    opacity: 1;
    position: absolute;
    display: block;
    top: 50%;
    right: 0.25rem;
    transform: rotate(90deg);
    transform-origin: center;
    transition: opacity 0.5s, transform 0.3s;
  }
  #faq-254 .cs-item-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    width: 90%;
    height: 0;
    margin: 0;
    opacity: 0;
    color: var(--bodyTextColor);
    /* clips the text so it doesn't show up */
    overflow: hidden;
    transition: opacity 0.3s, margin-bottom 0.3s;
  }
  #faq-254 .cs-cta {
    text-align: center;
    /* 48px - 64px top & bottom */
    /* 40px - 56px left & right */
    padding: clamp(3rem, 4.9vw, 4rem) clamp(2.5rem, 4vw, 3.5rem);
    background: var(--primaryLight);
    border-radius: 1rem;
    /* prevents padding from adding to width and height */
    box-sizing: border-box;
  }
  #faq-254 .cs-h3 {
    /* 25px - 31px */
    font-size: clamp(1.5625rem, 3vw, 1.9375rem);
    line-height: 1.2em;
    font-weight: bold;
    text-align: center;
    margin: 0;
    margin-bottom: 1rem;
    color: var(--headerColor);
  }
  #faq-254 .cs-cta-p {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-align: center;
    line-height: 1.5em;
    margin: 0;
    /* 32px - 48px */
    margin-bottom: clamp(2rem, 3.9vw, 3rem);
  }
  #faq-254 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #faq-254 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #faq-254 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48em) {
  #faq-254 .cs-container {
    max-width: 50rem;
  }
  #faq-254 .cs-flex-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  #faq-254 .cs-faq-group {
    margin: 0;
  }
}
#scheduler {
  padding: var(--sectionPadding);
}
#scheduler .cs-container {
  width: 100%;
  max-width: 36.5rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
}
#scheduler .cs-content {
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#scheduler .cs-topper {
  color: var(--secondary);
}
#scheduler .cs-title {
  color: var(--black);
  font: 900 clamp(42px, 4vw, 48px)/calc(1em + 6px) var(--font-rem);
  max-width: 100%;
}
#scheduler .cs-text {
  max-width: none;
  font: 400 16px/1.75rem var(--font-poppins);
}
#scheduler .cs-text a {
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
  color: var(--primary);
  transition: color 0.3s;
  filter: brightness(120%);
}
#scheduler .cs-text a:hover {
  color: var(--primary-dark);
  filter: brightness(100%);
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #scheduler .cs-container {
    max-width: 80rem;
  }
  #scheduler .cs-card-group {
    /* 20px - 32px */
    gap: clamp(1.25rem, 3vw, 2rem);
  }
  #scheduler .cs-item {
    padding: 0;
    /* 20px - 32px */
    padding-left: clamp(1.25rem, 3vw, 2rem);
    border: none;
    border-left: 1px solid var(--primary);
    grid-column: span 4;
  }
}

/*# sourceMappingURL=local.css.map */
