.counter__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.counter__title {
  padding: 0 30px;
  margin: 20px 60px;
  color: #fefdfe;
  font-family: "Akrobat - Black";
  font-size: 33px;
  font-weight: 400;
  line-height: 50px;
  text-transform: uppercase;
  text-align: center;
}

.counter {
  display: flex;
  justify-content: center
}

.counter__cell {
  width: 100px;
  /* height: 300px; */
  background: linear-gradient(0.63deg, #9B03BE -0.15%, #D33AF6 99.72%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
  border-radius: 10px;
  position: relative;
}

.counter__cell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-color: #3f3171;
  top: 50%;
}

.counter__cell__text {
  color: #fefdfe;
  font-family: "Akrobat";
  font-size: 180px;
  font-weight: lighter;
  line-height: 180px;
  padding-bottom: 15px;
  /* text-transform: uppercase; */
}