.home-counter-list {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
}

.counter-number,
.counter-sufix {
  color: var(--main-red);
  font-weight: 700;
  font-size: clamp(50px, 3.385416666666667vw, 65px);
  text-transform: uppercase;
}
.home-counter-list-item {
  max-width: 192px;
  flex: 1;
}
.home-counter-list-item:not(:first-of-type) {
  position: relative;
}
.home-counter-list-item:not(:first-of-type)::after {
  content: "";
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  background: #0000001a;
  height: 63px;
  width: 1px;
}
.home-counter.home-cta::before {
  background-image: url("../../../assets/icons/leftbottom-counter.webp");
}
@media only screen and (max-width: 1600px) {
  .home-counter-list-item {
    max-width: 100%;
    width: 50%;
    flex: unset;
  }
  .home-counter-list {
    flex-wrap: wrap;
  }
  .home-counter-list-item:not(:first-of-type)::after {
    left: -30%;
  }
}
@media only screen and (max-width: 992px) {
  .home-counter-list-item:not(:first-of-type)::after {
    left: -26%;
  }
}
@media only screen and (max-width: 992px) {
  .home-counter-list-item:not(:first-of-type)::after {
    left: -17%;
  }
}
@media only screen and (max-width: 767px) {
  .home-counter-list-item .h5__size {
    max-width: 153px;
  }
  .home-counter-list-item:not(:first-of-type)::after {
    height: 100px;
  }
}
@media only screen and (max-width: 567px) {
  .home-counter-list-item:not(:first-of-type)::after {
    left: -11%;
  }
}
