.history .history__wrapper {
  padding: 30px 0 0 40px;
}

.history .history__wrapper-box {
  position: relative;
}

.history .history__wrapper-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: var(--border-color);
}

.history .timeline__item-wrapper {
  padding: 0 30px 0 70px;
  position: relative;
}

.history .timeline__item-wrapper::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  top: 18px;
  left: 0;
  transform: translateX(-50%);
  z-index: 1;
  background-color: var(--black-color);
}

.history__timeline-headline {
  font-size: 34px;
  line-height: 51px;
  font-weight: 600;
  margin-bottom: 10px;
}

.history__timeline-content {
  font-size: 24px;
  line-height: 32px;
}

.history__timeline-content  strong {
  font-weight: 600;
}

.history__timeline-img img {
  width: 100%;
}

.history__item {
  margin-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .history__timeline-headline {
    font-size: 20px;
    line-height: 28px;
  }
  .history .history__wrapper {
    padding: 0;
  }

  .history .timeline__item-wrapper {
    padding: 0;
  }

  .history .timeline__item-wrapper::before {
    display: none;
  }

  .history .history__wrapper-box::after {
    display: none;
  }

  .history__timeline-content {
    font-size: 17px;
    line-height: 27px;
  }

  .history .timeline__item-wrapper {
    margin-bottom: 20px;
  }

  .history__item {
    margin-bottom: 40px;
  }

  
}
