.myTimeLine {
  position: relative;
  width: 1400px;
  margin: 3em auto 0 auto;
  width: 100%;
  height: auto;
  padding: 0.7rem 1.3rem 0 0.7rem;
}

.time-line-wrapper {
  position: relative;
}

.time-line-wrapper::before {
  content: "";
  position: absolute;
  width: 350%;
  height: 5px;
  bottom: 0;
  left: -50%;
  background-image: linear-gradient(
    to right,
    var(--bar-orange) 25%,
    var(--bar-green) 25%,
    var(--bar-green) 50%,
    var(--bar-blue) 50%,
    var(--bar-blue) 75%,
    var(--bar-yellow) 75%
  );
  background-size: 150px 100px;
  background-repeat: repeat;
}

.swiper-slide-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--white);
  padding: 2em 1em;
}

.swiper-slide-timeline:first-of-type::before,
.swiper-slide-timeline:last-of-type::before {
  content: "";
  position: absolute;
  top: 5px;
  left: calc(50% - 7.5px);
  width: 15px;
  height: 15px;
  background-color: var(--green);
  transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  z-index: 100;
}

.swiper-slide-timeline:first-of-type::after {
  content: "";
  position: absolute;
  width: 50%;
  left: 50%;
  height: 2px;
  top: 11px;
  background-color: var(--strong-gray);
}

.swiper-slide-timeline:last-of-type::after {
  content: "";
  position: absolute;
  width: 50%;
  left: 0;
  height: 2px;
  top: 11px;
  background-color: var(--strong-gray);
}

.swiper-slide-timeline:nth-last-of-type(2)::after,
.swiper-slide-timeline:nth-last-of-type(3)::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 2px;
  top: 11px;
  background-color: var(--strong-gray);
}

.swiper-slide-timeline:nth-last-of-type(2)::before,
.swiper-slide-timeline:nth-last-of-type(3)::before {
  content: "";
  position: absolute;
  top: 8px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background-color: var(--light-green);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 100;
}

.swiper-slide-title,
.swiper-slide-description {
  text-align: center;
  font-size: 1em;
  color: var(--strong-gray);
}

.swiper-slide-title {
  font-size: 1.4em;
}

.swiper-slide-description {
  width: 95%;
}

.swiper-button-next-timeline,
.swiper-button-prev-timeline {
  color: var(--strong-gray);
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
}

@media screen and (min-width: 1400px) {
  .swiper-slide-title {
    font-size: 1.4rem;
  }
  .swiper-slide-description {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 480px) {
}
