/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
.block-therapies {
  display: flex;
}
.block-therapies .number-container {
  min-height: 200px;
  font-family: var(--wp--preset--font-family--secondary);
  width: 100%;
  display: flex;
  align-items: flex-start;
  line-height: 1;
  transition: opacity 450ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.block-therapies .number-container.active {
  opacity: 1;
}
.block-therapies .number-container .large-number {
  position: relative;
  width: 2ch;
  font-size: 20rem;
  text-align: center;
}
.block-therapies .number-container .large-number .number {
  opacity: 0;
  position: absolute;
  top: 0;
  color: #121212;
  left: 0;
  line-height: 1;
  transform: translateY(-0.5em);
  transition: 750ms cubic-bezier(0.4, 0, 0.2, 1);
}
.block-therapies .number-container .small {
  color: rgba(18, 18, 18, 0.2);
  font-size: var(--wp--preset--font-size--xx-large);
  margin-top: 0.5em;
}
@media (max-width: 1024px) {
  .block-therapies .number-container .large-number {
    font-size: 15rem;
  }
  .block-therapies .number-container .small {
    font-size: var(--wp--preset--font-size--medium);
  }
}
@media (max-width: 782px) {
  .block-therapies .number-container {
    display: none;
  }
}
.block-therapies .therapies {
  padding: 0;
  width: 100%;
  margin: 0;
}
.block-therapies .therapies .therapy {
  width: 100%;
  margin-bottom: 0;
  border-top: 1px solid rgba(18, 18, 18, 0.1);
  transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: var(--wp--preset--spacing--normal);
}
.block-therapies .therapies .therapy .therapy-count {
  color: rgba(18, 18, 18, 0.1);
  transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
}
.block-therapies .therapies .therapy.active {
  border-top: 1px solid #121212;
}
.block-therapies .therapies .therapy.active .therapy-count {
  color: #121212;
}
.block-therapies .therapies .therapy .wp-block-columns {
  margin-top: var(--wp--preset--spacing--x-large);
  margin-bottom: var(--wp--preset--spacing--x-large);
  gap: var(--wp--preset--spacing--xx-large);
}
.block-therapies .therapies .therapy .wp-block-columns .therapy-icon {
  flex-basis: 140px;
}
@media (max-width: 782px) {
  .block-therapies .therapies .therapy .wp-block-columns {
    gap: var(--wp--preset--spacing--large);
  }
  .block-therapies .therapies .therapy .wp-block-columns .therapy-icon {
    flex-basis: 70px;
  }
}
.block-therapies .therapies .therapy h2 {
  font-size: clamp(3rem, 4vw, 4.8rem);
}
.block-therapies .therapies .therapy h2 span {
  display: block;
  margin-top: 0.2em;
  color: rgba(18, 18, 18, 0.3);
}
.block-therapies .therapies .therapy p:first-of-type {
  font-size: var(--wp--preset--font-size--large);
  font-family: var(--wp--preset--font-family--secondary);
}
@media (min-width: 1025px) {
  .block-therapies .number-container {
    width: 40%;
    min-height: 0;
  }
  .block-therapies .therapies {
    width: 60%;
  }
}
@media (max-width: 1024px) {
  .block-therapies .number-container {
    width: 30%;
  }
  .block-therapies .therapies {
    width: 70%;
  }
  .block-therapies .therapies .therapy .wp-block-columns {
    gap: var(--wp--preset--spacing--large);
  }
}
@media (max-width: 782px) {
  .block-therapies .therapies {
    width: 100%;
  }
  .block-therapies .therapies .therapy {
    border-top: 0;
  }
  .block-therapies .therapies .therapy-count {
    border-bottom: 1px solid rgba(18, 18, 18, 0.1);
    font-size: 10rem;
    font-family: var(--wp--preset--font-family--secondary);
  }
  .block-therapies .therapies .therapy-count span {
    display: none;
  }
  .block-therapies .therapies .therapy.active {
    border-top: 0;
  }
  .block-therapies .therapies .therapy.active .therapy-count {
    border-bottom: 1px solid #121212;
  }
}/*# sourceMappingURL=block-therapies.css.map */