.timeline-2 {
  padding: 78px 0 64px;
}
@media (min-width: 62em) {
  .timeline-2 {
    padding: 80px 0;
  }
}
.timeline-2 .section-title {
  margin-bottom: 14px;
}
@media (min-width: 48em) {
  .timeline-2 .section-title {
    margin-bottom: 0;
  }
}
.timeline-2__row {
  row-gap: 0;
}
@media (min-width: 48em) {
  .timeline-2__row {
    margin-bottom: 60px;
    justify-content: space-between;
  }
}
@media (min-width: 62em) {
  .timeline-2__row {
    margin-bottom: 90px;
  }
}
@media (min-width: 88.25em) {
  .timeline-2__row {
    margin-bottom: 115px;
  }
}
.timeline-2__text {
  margin-bottom: 48px;
}
@media (min-width: 48em) {
  .timeline-2__text {
    margin-bottom: 0;
  }
}
.timeline-2__wrapper {
  position: relative;
}
.timeline-2__wrapper:after {
  content: "";
  display: block;
  height: calc(100% - 60px);
  width: 25%;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 98%);
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}
.timeline-2__wrapper.slider-ending:after {
  content: none;
}
.timeline-2__wrapper.slider-ending .timeline-slider:before, .timeline-2__wrapper.slider-ending .timeline-slider:after {
  width: 100%;
}
.timeline-2 .timeline-2-labels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 0;
}
.timeline-2 .timeline-2-labels:before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 14px;
  background-color: var(--clr-03);
}
.timeline-2 .label-wrapper {
  border: 2px solid var(--clr-03);
  padding: 0;
  flex: 1;
}
.timeline-2 .label-group {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.timeline-2 .label-desc {
  padding: 14px 14px 20px;
  color: var(--clr-03);
}
.timeline-2 .label-tick {
  position: relative;
  top: unset;
  transform: unset;
  display: block;
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: var(--clr-03);
  transition: background-color 0.3s;
}
.timeline-2 .label-date {
  background-color: var(--clr-03);
  color: var(--clr-01);
  padding: 0px 4px 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: auto;
  margin-bottom: 0;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}
.timeline-2 .label-year {
  margin-bottom: 0;
}

.timeline-slider {
  position: relative;
}
.timeline-slider:before {
  content: "";
  height: 2px;
  width: 90%;
  position: absolute;
  top: 14px;
  left: 0px;
  background-color: var(--clr-03);
}
.timeline-slider:after {
  content: "";
  height: 2px;
  width: 150%;
  position: absolute;
  top: 14px;
  left: 0px;
  background: #DBDDDD;
  z-index: -1;
}
.timeline-slider .swiper-wrapper {
  position: relative;
}
.timeline-slider .swiper-slide {
  width: 150px;
  height: unset;
}
@media (min-width: 36em) {
  .timeline-slider .swiper-slide {
    width: 180px;
  }
}
@media (min-width: 48em) {
  .timeline-slider .swiper-slide {
    width: 200px;
  }
}
@media (min-width: 62em) {
  .timeline-slider .swiper-slide {
    width: 220px;
  }
}
.timeline-slider .swiper-slide-active, .timeline-slider .swiper-slide-prev {
  position: relative;
}
.timeline-slider .swiper-slide-active:before, .timeline-slider .swiper-slide-prev:before {
  content: "";
  height: 2px;
  width: calc(100% + 50px);
  position: absolute;
  top: 14px;
  left: 0px;
  background-color: var(--clr-03);
}
.timeline-slider .timeline-navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 90px;
}
.timeline-slider .timeline-navigation__pages {
  display: flex;
  gap: 10px;
}
.timeline-slider .timeline-navigation__page {
  border: 2px solid rgba(255, 255, 255, 0.14);
  height: 54px;
  min-width: 63px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: all 0.3s;
}
.timeline-slider .timeline-navigation__page:hover, .timeline-slider .timeline-navigation__page.active {
  border: 2px solid var(--clr-01);
  color: var(--clr-01);
  background-color: var(--clr-03);
}
.timeline-slider .timeline-navigation__page--empty {
  cursor: default;
  pointer-events: none;
}
.timeline-slider .swiper-button-next, .timeline-slider .swiper-button-prev {
  position: relative;
  margin: 0;
  transition: background-color 0.3s;
  cursor: pointer;
  font-size: 54px;
}