@keyframes border-grow {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}

.text-stat-content__right {
  margin-top: 3.2rem;
  position: relative;
}

.text-stat-content__right::before {
  position: absolute;
  width: 1px;
  height: 0; /* Initial height */
  content: '';
  transition: height 1200ms ease-in;
  top: 0;
  left: 0;
  background: black;
  display: block;
}

.animate.text-stat-content__right::before{
height:100%;
} 
/* .text-stat-content__right .text-stat-content__box {
  border-left: 1px solid var(--black)
} */
.text-stat-content__right .text-stat-content__box:last-child {
  padding-bottom: 0
}
.text-stat-content__icon-wrapper {
	row-gap: 24px;
}
.text-stat-content__icon-main {
	max-width: 33.33%;
    width: 150px;
}
@media (min-width:768px) {
  .text-stat-content__right {
    margin-top: 0
  }
}
@media (min-width:768px) and (max-width:1199.98px) {
	.text-stat-content__icon-main {
    	width: 50%;
        max-width: none;
    }
}
@media (max-width:768px) {
  .text-stat-content__icon-main {
    min-width: 33.33%;
  }
}

@media (max-width:575.98px) {
  .text-stat-content__icon-main {
    min-width: 50%;
  }
}