.vertical-progresses {
  position: relative;
  height: 375px;
  background-color: #f0f0f0;
  display: flex;
  justify-content: space-evenly;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.vertical-progresses .progress-line {
  height: 70%;
  width: 5vw;
  position: relative;
  overflow: hidden;
}

.vertical-progresses .graph-progress-holder {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.vertical-progresses .graph-progress-holder .title {
  font-size: 13.5px;
  margin: 10px 2px;
}

.vertical-progresses .graph-progress-holder h5 {
  position: relative;
  font-size: 18px;
  margin: 10px 0;
}

@media (max-width: 767px) {
  .vertical-progresses .graph-progress-holder h5 {
    font-size: 2.5vw;
  }
}

@media (max-width: 575px) {
  .vertical-progresses .graph-progress-holder .title {
    font-size: 2.5vw;
    transform: rotate(-60deg);
  }
}

.vertical-progresses .progress-line span {
  position: absolute;
  height: 0%;
  width: 100%;
  bottom: 0;
  border-radius: 8px 8px 0 0;
  opacity: 0.8;
  transition: 2s height, 0.5s opacity;
}