:root {
  --box-shadow: 0px 8px 40px rgba(155, 155, 155, 0.25);
  --gradient-purple-pink: linear-gradient(90deg, #380594 0%, #eb5af6 100%);
  --gradient-grape-aqua: linear-gradient(90deg, #6529f6 0%, #42fbfe 100%);
  --viewportWidth: calc(100vw - var(--scrollbarWidth));
  --component-spacing: 80px;
  --navigation-height: 97px;
}
@media (min-width: 768px) {
  :root {
    --component-spacing: 95px;
  }
}
@media (min-width: 1024px) {
  :root {
    --component-spacing: 130px;
    --navigation-height: 164px;
  }
}
@media (min-width: 1280px) {
  :root {
    --navigation-height: 153px;
  }
}

.block-visual-journey {
  position: relative;
}
.block-visual-journey.bg-purple {
  background-color: #f6f3fa;
  padding-block: calc(var(--component-spacing) * 0.846);
}
.block-visual-journey.bg-purple:first-of-type {
  margin-top: 0;
}
.block-visual-journey.bg-purple:last-of-type {
  margin-bottom: 0;
}
.block-visual-journey .text-wrapper {
  max-width: 796px;
}
.block-visual-journey .site-wrapper {
  position: relative;
  z-index: 20;
}
.block-visual-journey .timeline-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 60px;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-left: 32px;
  max-width: 1340px;
  margin-inline: auto;
}
.block-visual-journey .timeline-scroll-wrapper.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
.block-visual-journey .timeline-scroll-wrapper {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.block-visual-journey .timeline-scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.block-visual-journey .timeline-scroll-wrapper .scroll-fade {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #f6f3fa);
  z-index: 10;
  pointer-events: none;
  display: block;
}
.block-visual-journey .timeline-scroll-wrapper .scroll-fade .scroll-indicator {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: opacity 0.5s ease;
  opacity: 1;
}
.block-visual-journey .timeline-scroll-wrapper .scroll-fade .scroll-indicator .arrow {
  display: block;
  width: 16px;
  height: 16px;
  border-right: 3px solid #380594;
  border-bottom: 3px solid #380594;
  transform: rotate(-45deg);
  animation: scrollBounce 2s infinite;
}
.block-visual-journey .timeline-scroll-wrapper.has-interacted .scroll-fade .scroll-indicator {
  opacity: 0;
}
.block-visual-journey .timeline-track {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-width: -moz-min-content;
  min-width: min-content;
}
.block-visual-journey .timeline-line {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #9c82c9;
  z-index: 0;
}
.block-visual-journey .timeline-year-marker {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  margin-right: 40px;
  margin-left: 20px;
  padding-bottom: 45px;
}
.block-visual-journey .timeline-year-marker .year-text {
  font-size: 32px;
  font-weight: 700;
  color: #380594;
  line-height: 1.32;
  background-color: #f6f3fa;
  padding: 0 10px;
}
.block-visual-journey .timeline-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: 280px;
  flex-shrink: 0;
  margin-right: 60px;
  padding-bottom: 52px;
}
.block-visual-journey .journey-card {
  position: relative;
  background: white;
  padding: 20px 16px 16px;
  border-radius: 8px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.05));
  margin-bottom: 60px;
  width: 100%;
}
.block-visual-journey .journey-card .card-date {
  color: #eb5af6;
  margin-bottom: 4px;
}
.block-visual-journey .journey-card h3 {
  font-size: 19px;
  margin: 0;
}
.block-visual-journey .journey-card .card-image {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  pointer-events: none;
}
.block-visual-journey .journey-card .card-body {
  margin-top: 12px;
}
.block-visual-journey .journey-card .card-body *:first-child {
  margin-top: 0;
}
.block-visual-journey .journey-card .card-body *:last-child {
  margin-bottom: 0;
}
.block-visual-journey .journey-card::after {
  content: "";
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #fff;
}
.block-visual-journey .timeline-dot {
  width: 22px;
  height: 22px;
  background-color: #eb5af6;
  border-radius: 50%;
  border: 4px solid white;
}
.block-visual-journey .timeline-start-marker,
.block-visual-journey .timeline-end-marker {
  width: 2px;
  height: 140px;
  background: #9c82c9;
  position: absolute;
  bottom: 0;
}
.block-visual-journey .timeline-start-marker {
  left: 0;
}
.block-visual-journey .timeline-end-marker {
  right: 0;
}
@media (min-width: 768px) {
  .block-visual-journey .timeline-scroll-wrapper {
    padding-left: 48px;
  }
  .block-visual-journey .timeline-scroll-wrapper .scroll-fade {
    width: 120px;
  }
  .block-visual-journey .timeline-item {
    width: 320px;
  }
}
@media (min-width: 1024px) {
  .block-visual-journey .timeline-scroll-wrapper {
    padding-left: 40px;
  }
}
@media (min-width: 1340px) {
  .block-visual-journey .timeline-scroll-wrapper {
    padding-inline: 40px;
    width: 90%;
  }
  .block-visual-journey .timeline-scroll-wrapper .scroll-fade {
    right: calc(50% - 670px);
  }
}
@media (min-width: 1600px) {
  .block-visual-journey .timeline-scroll-wrapper {
    width: 100%;
  }
}

@keyframes scrollBounce {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0.6;
  }
  50% {
    transform: rotate(-45deg) translate(6px, 6px);
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0.6;
  }
}