/*
* 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-therapy-cards {
  margin-top: -10rem !important;
}
.block-therapy-cards .therapy {
  position: relative;
  background: #f8f8f8;
  border-radius: 4rem;
  gap: var(--wp--preset--spacing--xx-large);
  margin: 0;
  transition: background 450ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 782px) {
  .block-therapy-cards .therapy {
    padding-top: var(--wp--preset--spacing--xx-large);
  }
}
.block-therapy-cards .therapy::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: #121212;
  opacity: 0;
  z-index: 4;
  visibility: hidden;
  pointer-events: none;
  transition: 750ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4rem;
}
.block-therapy-cards .therapy::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 250px;
  border-radius: 4rem 4rem 0 0;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: 750ms cubic-bezier(0.4, 0, 0.2, 1);
  background-image: linear-gradient(to bottom, var(--wp--preset--color--white) 50%, transparent);
}
@media (max-width: 782px) {
  .block-therapy-cards .therapy::after {
    height: 40vh;
  }
}
.block-therapy-cards .therapy-title {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--x-small);
  border-top: 1px solid #d9d9d9;
  padding-top: var(--wp--preset--spacing--medium);
  padding-left: var(--wp--preset--spacing--x-large);
  opacity: 0.5;
  transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
}
.block-therapy-cards .therapy-title::before {
  content: attr(data-count);
  position: absolute;
  top: var(--wp--preset--spacing--medium);
  left: 0;
  margin-top: 0.3em;
  margin-right: var(--wp--preset--spacing--medium);
  font-size: var(--wp--preset--font-size--normal);
  color: rgba(18, 18, 18, 0.5);
}
.block-therapy-cards .therapy-title span {
  color: rgba(18, 18, 18, 0.3);
}
@media (max-width: 782px) {
  .block-therapy-cards .therapy-title {
    font-size: var(--wp--preset--font-size--large);
  }
  .block-therapy-cards .therapy-title::before {
    font-size: var(--wp--preset--font-size--small);
    top: var(--wp--preset--spacing--medium);
  }
}
.block-therapy-cards .therapy.active {
  background: var(--wp--preset--color--white);
}
.block-therapy-cards .therapy.active .therapy-title {
  border-color: #121212;
  opacity: 1;
}
.block-therapy-cards .therapy.active::after {
  opacity: 1;
}
.block-therapy-cards .therapy.inactive {
  filter: blur(3px);
}
.block-therapy-cards .therapy.inactive::before {
  opacity: 0.3;
  visibility: visible;
}
.block-therapy-cards .therapy-icon, .block-therapy-cards .therapy-lottie {
  position: relative;
  z-index: 3;
  max-width: 240px;
  margin-left: var(--wp--preset--spacing--medium);
}
@media (max-width: 782px) {
  .block-therapy-cards .therapy-icon, .block-therapy-cards .therapy-lottie {
    margin: auto;
    max-width: 100px;
    padding-bottom: var(--wp--preset--spacing--large);
  }
}
@media (min-width: 1025px) {
  .block-therapy-cards .therapy-content {
    padding-bottom: var(--wp--preset--spacing--xx-large);
  }
}
.block-therapy-cards .therapy-content .is-style-intro {
  font-size: var(--wp--preset--font-size--x-large);
}
.block-therapy-cards .therapy-content .wp-block-button {
  width: 100%;
}
.block-therapy-cards .therapy-content .wp-block-button__link {
  width: 100%;
  margin-top: 1em;
  cursor: pointer;
  justify-content: space-between;
}
.block-therapy-cards .therapy-partners {
  margin-top: var(--wp--preset--spacing--large);
}
.block-therapy-cards .therapy-partners h3 {
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
  padding-bottom: var(--wp--preset--spacing--medium);
  display: block;
}
.block-therapy-cards .therapy-partners ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.block-therapy-cards .therapy-partners ul li {
  margin-bottom: var(--wp--preset--spacing--medium);
}
.block-therapy-cards .therapy-partners ul h4 {
  font-weight: 500;
  font-family: var(--wp--preset--font-family--primary);
}

.therapy-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  isolation: isolate;
  transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 250ms;
}
.therapy-modal__inner {
  display: flex;
  position: relative;
  max-width: 1000px;
  margin-left: 3rem;
  margin-right: 3rem;
  max-height: 70vh;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--white);
  border-radius: 1.6rem;
  padding: var(--wp--preset--spacing--large);
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(0.9);
  opacity: 0;
  transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  .therapy-modal__inner {
    max-width: 85%;
    height: auto;
    padding: var(--wp--preset--spacing--normal);
  }
  .therapy-modal__inner h3 {
    padding-bottom: 0;
  }
}
.therapy-modal.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0ms;
  pointer-events: all;
}
.therapy-modal.active .therapy-modal__inner {
  transform: scale(1);
  opacity: 1;
  transition-delay: 150ms;
}
.therapy-modal__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.therapy-modal__content h3 span {
  color: rgba(18, 18, 18, 0.4);
}
.therapy-modal__content img {
  height: 100%;
  margin: auto;
  text-align: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.therapy-modal__close {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -25px;
  right: -25px;
  z-index: 10;
  background: white;
  border-radius: 999px;
  outline: 1px solid transparent;
  transition: 250ms ease;
  border: 1px solid transparent;
}
.therapy-modal__close svg {
  width: 16px;
}
.therapy-modal__close:hover {
  border: 1px solid #121212;
  outline: 1px solid #121212;
  outline-offset: 1px;
}/*# sourceMappingURL=block-therapy-cards.css.map */