.slainte-process.slainte-process-style {
    display: block;
    width: 100%;
    
    position: relative;
    color:var(--global-font-color);
    text-align: center;
    margin: 0 auto;
  }
  .slainte-process.slainte-process-style .timeline-line {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-theme-grey);
    position: absolute;
    top: 50%;
    opacity: 0.5;
  }
  .slainte-process.slainte-process-style .slainte-process-box {
    height: 100%;
    display: flex;
    padding: 0 16px;
    height: 450px;
  }
  .slainte-process.slainte-process-style .slainte-process-item {
    width: 100%;
    position: relative;
    height: 100%;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    z-index: 1;
    margin: 0 16px;
  }
  .slainte-process.slainte-process-style .slainte-process-item > .dot {
    height: auto;
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    cursor: pointer;
  }
  .slainte-process.slainte-process-style .slainte-process-item > .dot:before {
    content: " ";
    display: block;
    width: 10px;
    height: 10px;
    background: var(--color-theme-primary);
    margin: -4px auto;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }
  .slainte-process.slainte-process-style .slainte-process-item .slainte-content
  {
    transform: translatey(0px);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;opacity: 0;

  }
  .slainte-process.slainte-process-style .owl-item.firstActive .slainte-process-item .slainte-content,
  .slainte-process.slainte-process-style .slainte-process-item.activeHover .slainte-content {
    transform: translatey(100px);opacity: 1;
  }

  .slainte-process.slainte-process-style .slainte-process-item .slainte-content p
  {
    margin-bottom: 0;
  }
  .slainte-process.slainte-process-style .slainte-process-item .slainte-title
  {
    transform: translatey(0px);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    margin-top: 16px;
  }
  .slainte-process.slainte-process-style .owl-item.firstActive .slainte-process-item .slainte-title,
  .slainte-process.slainte-process-style .slainte-process-item.activeHover .slainte-title
{
    transform: translatey(100px);
}
/* .slainte-process.slainte-process-style .slainte-process-item .slainte-content{
   opacity: 0;
   transition: all 0.5s ease-in-out;
   -moz-transition: all 0.5s ease-in-out;
   -ms-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   -webkit-transition: all 0.5s ease-in-out;
}
  .slainte-process.slainte-process-style .slainte-process-item.active .slainte-content{
     opacity: 1;
  
  } */
  .slainte-process.slainte-process-style .owl-item.firstActive .slainte-process-item  .icon-box-img-box .icon-box-img,
  .slainte-process.slainte-process-style .slainte-process-item.activeHover  .icon-box-img-box .icon-box-img {
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    opacity: 1;
  }
  .slainte-process.slainte-process-style .slainte-process-item .icon-box-img-box .icon-box-img{
    height: 200px;
    width: 200px;
    border: 1px solid var(--color-theme-primary);
    border-radius: 50%;
    line-height: 200px;
    margin: 0 auto;
    background-color: var(--color-theme-white);
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;    
    opacity: 0;
}