/* Services */
.technologyOutput {
    /* display: none!important; */
}

/* For home customization */

.therapy-show img {
    transition: transform 0.4s ease-in-out;
}

.therapy-show img.active {
    transform: rotate(180deg);
}

.therapy-description {
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
  height: 0px;
}
.therapy-description.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  height: auto;
}