.timeline-wrapper {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.timeline-wrapper .timeline-nav {
  display: flex;
  flex-direction: column;
  padding: 32px 0;
  max-width: 1440px;
  width: 100%;
  gap: 16px;
}
.timeline-wrapper .timeline-nav > .bloops {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.timeline-wrapper .timeline-nav > .bloops::before {
  content: "";
  width: 100%;
  border-bottom: 2px dashed #FAD42F;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1;
}
.timeline-wrapper .timeline-nav > .bloops > button {
  width: 40px;
  height: 40px;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  position: relative;
  z-index: 2;
}
.timeline-wrapper .timeline-nav > .bloops > button:hover {
  transform: scale(1.1);
}
.timeline-wrapper .timeline-nav > .bloops > button > span {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  display: block;
  text-align: center;
  color: var(--Primary-White, #FFF);
  text-align: center;
  font-family: Cavet, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 100% */
  letter-spacing: 0.36px;
}
.timeline-wrapper .timeline-container {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 32px;
  padding: 32px 0;
  max-width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.timeline-wrapper .timeline-container::-webkit-scrollbar {
  display: none;
}
.timeline-wrapper .timeline-container .timeline-item {
  scroll-snap-align: start;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  border-radius: 12px;
  padding: 32px;
  box-sizing: border-box;
  min-width: 60%;
  max-width: 60%;
  gap: 32px;
}
.timeline-wrapper .timeline-container .timeline-item:nth-child(even) {
  margin-top: 128px;
}
.timeline-wrapper .timeline-container .timeline-item .image {
  width: 50%;
  aspect-ratio: 443/331;
  border-radius: 16px;
  background: var(--image) no-repeat center center/cover;
  border-radius: 8px;
}
.timeline-wrapper .timeline-container .timeline-item .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.timeline-wrapper .timeline-container .timeline-item .content p {
  color: var(--Primary-White, #FFF);
  font-family: Palanquin;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--Line-height-text-lg, 28px); /* 140% */
}
.timeline-wrapper .timeline-container .timeline-item .content .buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.timeline-wrapper .timeline-container .timeline-item .content .buttons > .wp-element-button:nth-child(2) {
  background-color: transparent;
  color: #fff;
}
