/* History */
.history {

}

.history__header {
  margin-bottom: 60px;
}

.history__header .h1 {
  margin-bottom: 30px;
}

.history__content {
  position: relative;
}

.history__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  border-bottom: 1px solid var(--line-color);
  z-index: 2;
}

.history__list-outer {
  position: relative;
}

.history__list-outer:before,
.history__list-outer:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.15s ease-in-out;
}

.history__list-outer.is-start:before,
.history__list-outer.is-end:after {
  opacity: 1;
  visibility: visible;
}

.history__list-outer:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.history__list-outer:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.history__list-wrapper {
  user-select: none;
  overflow: hidden;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: transparent transparent;
  scrollbar-width: none;
  cursor: move;
}

.history__list-wrapper:not(.is-move) {
  scroll-behavior: smooth;
}

.history__list-wrapper::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.history__list-wrapper::-webkit-scrollbar-track {
  background-color: transparent;
}

.history__list-wrapper::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.history__list-wrapper.is-active,
.history__list-wrapper.is-active * {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.history__list-wrapper.is-move * {
  pointer-events: none;
}

.history__list {
  display: inline-block;
  vertical-align: top;
}

.history__part {
  display: flex;
}

.history__part_top {
  padding-left: 90px;
  border-bottom: 1px solid var(--line-color);
}

.history__item {
  flex: 0 0 auto;
  width: 390px;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 50px;
}

.history__part_bottom .history__item {
  padding-bottom: 0;
  padding-top: 50px;
}

.history__item-line {
  position: absolute;
  left: 9px;
  top: 9px;
  bottom: 0;
  border-left: 1px solid var(--line-color);
}

.history__part_bottom .history__item-line {
  top: 0;
  bottom: auto;
  height: 77px;
}

.history__item-line:before {
  content: '';
  position: absolute;
  left: -9px;
  width: 18px;
  height: 18px;
  top: 0;
  z-index: 1;
  border-radius: 50%;
  background-color: var(--accent-color);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='%231F1F1F' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 8h3v2h-3v3H8v-3H5V8h3V5h2v3Z'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.history__part_bottom .history__item-line:before {
  top: auto;
  bottom: 0;
}

.history__item-year {
  font-size: 26px;
  line-height: 36px;
  letter-spacing: 0.035em;
  font-weight: normal;
  margin-bottom: 8px;
}

.history__item-text {
  font-size: 14px;
  line-height: 22px;
}

.history__part_bottom {
}

@media (max-width: 1199.98px) {
  .history__header {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .history__part_top {
    padding-left: 40px;
  }

  .history__item {
    width: 250px;
    padding-left: 30px;
    padding-right: 20px;
  }

  .history__list-outer:before,
  .history__list-outer:after {
    width: 40px;
  }
}
/* ! History */