.editor-styles-wrapper .Timeline {
  background: var(--colors-denary2);
  overflow: hidden;
}
.editor-styles-wrapper .Timeline__container {
  padding-top: 125px;
  padding-bottom: 155px;
  overflow-x: auto;
  margin-bottom: -30px;
  scroll-behavior: smooth;
}
.editor-styles-wrapper .Timeline__row {
  position: relative;
  min-width: 1248px;
  display: flex;
  padding: 0 20px;
  margin: 0 -26px;
}
.editor-styles-wrapper .Timeline__item {
  cursor: pointer;
  user-select: none;
  padding: 0 10px;
  display: flex;
  min-width: 240px;
  max-width: 302px;
  flex-direction: column;
  position: relative;
  z-index: 1;
  min-height: 100%;
}
.editor-styles-wrapper .Timeline__item .Timeline__item__image {
  border-radius: 6px;
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.editor-styles-wrapper .Timeline__item .Timeline__item__title,
.editor-styles-wrapper .Timeline__item .Timeline__item__content {
  opacity: 0;
  will-change: opacity;
}
.editor-styles-wrapper .Timeline__item .Timeline__item__title {
  font-size: 36px;
  line-height: 48px;
  color: var(--colors-quinary);
  margin: 100px 0 24px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all ease 0.5s;
}
.editor-styles-wrapper .Timeline__item .Timeline__item__content {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  transition: all ease 0.5s 0.2s;
}
.editor-styles-wrapper .Timeline__item .Timeline__item__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 332px;
  transform: translateX(-50%) translateY(-50%);
}
.editor-styles-wrapper .Timeline__item .Timeline__item__point:before {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  transition: all ease 0.5s;
  background: var(--colors-black);
  border-radius: 50%;
}
.editor-styles-wrapper .Timeline__item .Timeline__item__point__year {
  margin-top: 17px;
  font-size: 12px;
  line-height: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: absolute;
  transition: color ease 0.5s;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 1px;
}
.editor-styles-wrapper .Timeline__item.__active .Timeline__item__title,
.editor-styles-wrapper .Timeline__item.__active .Timeline__item__content {
  opacity: 1;
}
.editor-styles-wrapper .Timeline__item.__active .Timeline__item__point:before {
  background: var(--colors-quinary);
}
.editor-styles-wrapper .Timeline__item.__active .Timeline__item__point__year {
  color: var(--colors-quinary);
}
.editor-styles-wrapper .Timeline__item.__item_0 {
  padding-top: 15px;
}
.editor-styles-wrapper .Timeline__item.__item_0 .Timeline__item__point {
  margin-top: -45px;
}
.editor-styles-wrapper .Timeline__item.__item_1 .Timeline__item__point {
  margin-top: -46px;
}
.editor-styles-wrapper .Timeline__item.__item_2 {
  padding-top: 54px;
}
.editor-styles-wrapper .Timeline__item.__item_2 .Timeline__item__point {
  margin-top: -3px;
}
.editor-styles-wrapper .Timeline__item.__item_3 {
  padding-top: 27px;
}
.editor-styles-wrapper .Timeline__item.__item_3 .Timeline__item__point {
  margin-top: -25px;
}
.editor-styles-wrapper .Timeline__line {
  width: 100%;
  height: auto;
  position: absolute;
  top: 269px;
  left: 0;
  right: 0;
  overflow: hidden;
}
.editor-styles-wrapper .Timeline__line svg {
  width: calc(100% + 20px);
  max-width: calc(100% + 20px);
  margin: 0 -10px;
  height: auto;
}
.editor-styles-wrapper .Timeline__line svg path {
  animation: Waves-block 25s ease infinite;
}
.editor-styles-wrapper .Timeline__line svg path:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.editor-styles-wrapper .Timeline__line svg path:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.editor-styles-wrapper .Timeline__line svg path:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.editor-styles-wrapper .Timeline__line svg path:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes Waves-block {
  0% {
    transform: scaleY(90%) scaleX(105%);
  }
  50% {
    transform: scaleY(105%) scaleX(105%);
  }
  100% {
    transform: scaleY(90%) scaleX(105%);
  }
}
/*# sourceMappingURL=style.css.map */