.container_time_line {
  width: 100%;
  padding: 0px var(--padding-gral);
  display: flex;
  flex-wrap: nowrap;
}
.container_time_line .time {
  border-top: 1px solid white;
  box-sizing: border-box;
  flex-grow: 1;
  width: 100%;
  position: relative;
  padding-top: 15px;
}
.container_time_line .time .dot {
  position: absolute;
  top: -13.5px;
  width: 26px;
  height: 26px;
  border-radius: 13px;
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.container_time_line .time .dot svg {
  fill: white;
  width: 50%;
}
.container_time_line .time p {
  color: white;
  font-size: var(--text-size);
  text-wrap: balance;
}
@media screen and (max-width: 750px) {
  .container_time_line {
    margin-bottom: 100px;
  }
  .container_time_line .time {
    border-top: none;
    height: 8px;
    border-radius: calc(8px / 2) 0px 0px calc(8px / 2);
    background-color: white;
    padding: 0px;
  }
  .container_time_line .time .dot {
    display: none;
  }
  .container_time_line .time p {
    margin-top: 15px;
    padding-right: 15px;
  }
  .container_time_line .time:first-child {
    background-color: var(--main-color);
    margin-right: 5px;
    border-radius: calc(8px / 2);
  }
  .container_time_line .time:last-child {
    border-radius: 0px calc(8px / 2) calc(8px / 2) 0px;
    margin-left: -2px;
  }
  .container_time_line .time:last-child::after {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 8px;
    height: 8px;
    border-radius: calc(8px / 2);
    background-color: var(--main-color);
  }
}
