.therapy-process {
  padding: 60px 0 60px;
}
.therapy-process .section-title {
  text-align: center;
}
.section-row .section-title {
  margin-bottom: 0;
}
.section-title h2.custom-text {
  color: var(--secondary-color);

}
.section-row {
  margin-bottom: 60px;
}
.therapy-process-item {
  text-align: center;
  height: calc(100% - 30px);
}
.therapy-process-item .icon-box {
  position: relative;
  height: 140px;
  width: 140px;
  border-radius: 100%;
  margin: 0 auto;
    margin-bottom: 0px;
  margin-bottom: 30px;
}
.therapy-process .col-lg-3:nth-child(2n+1) .therapy-process-item .icon-box::before {
  position: absolute;
  display: block;
  content: '';
  background: url('../img/icon-right-up-arrow.svg') no-repeat right center;
    background-size: auto;
  top: 50%;
  left: -27px;
  width: 129px;
  height: 40px;
  background-size: 100% auto;
  transform: translate(175px, -50%);
  z-index: 2;
}
.image-anime {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
}
.therapy-process-content {
  margin-bottom: 30px;
}
.therapy-process-item .therapy-process-content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  text-transform: capitalize;
  max-width: 220px;
  margin: 0 auto;
  color: var(--third-color);
}
.therapy-process .col-lg-3:nth-child(2n) .therapy-process-item .icon-box::before {
  position: absolute;
  display: block;
  content: '';
  background: url('../img/icon-right-down-arrow.svg') no-repeat right center;
    background-size: auto;
  top: 50%;
  left: -27px;
  width: 129px;
  height: 40px;
  background-size: 100% auto;
  transform: translate(175px, -50%);
  z-index: 2;
}
.therapy-process .col-lg-3:nth-last-child(1) .therapy-process-item .icon-box:before{
  display: none;
}
.image-anime::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255,255,255,.3);
  transform: translate(-50%,-50%) rotate(-45deg);
  z-index: 1;
}
.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
@media only screen and (max-width: 575px) {
  .col-xs-6 {
    flex: 0 0 auto;
    width: 50% !important;
  }
    .therapy-process {
    padding: 50px 0 20px;
  }

.therapy-process .col-lg-3:nth-child(2n+1) .therapy-process-item .icon-box::before, .therapy-process .col-lg-3:nth-child(2n) .therapy-process-item .icon-box::before  {display: none}
}