

@media screen and (max-width: 1524px) and (max-height: 860px) {
    .mac-screen{
        padding-bottom: 59px;
    }
  }

  @media screen and (min-width: 1280px) and (max-width: 1536px) {
    .media-query-col{
        grid-column-start: 8;
    }
  }
body > div.section-wrapper.flex.flex-col.gap-8.sm\:gap-12 > div > div > div.text-center.text-white > div > p {
  color: white !important;
}

/* styles.css */
.transition-opacity {
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.slide-enter {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.slide-enter-active {
  transform: translateX(0);
}

.slide-exit {
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}

.slide-exit-active {
  transform: translateX(-100%);
}

.opacity-visible {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.opacity-hidden {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.scrollbar-hide {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.timeline-container {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.timeline-container::after {
  content: '';
  position: absolute;
  top: 35%;
  bottom: 0;
  left: 50%;
  width: 2px;
  border-left: 2px dashed rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  margin: 7rem 0;
  position: relative;
  min-height: 500px;
  opacity: 0.5; /* Inactive state */
  transition: opacity 0.3s ease-in-out; /* Smooth transition */
}

/* Full opacity for active items */
.timeline-item.active .timeline-right {
  opacity: 1 !important; /* Active state */
}

.timeline-marker {
  position: sticky;
  top: 35%;
  width: 15px;
  height: 15px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-left {
  top: 70%;
  text-align: left;
  width: 40%;
  padding-left: 2rem;

  position: sticky;
  height: fit-content;
  border-radius: 50%;
  z-index: 1;

  display: flex;
  flex-direction: column;

  opacity: 20%;
  transition: opacity 0.5s ease-in-out;
}

.timeline-right {
  text-align: right;
  width: 40%;
  padding-right: 2rem;

  text-align: left;
  opacity: 20%;
  transition: opacity 0.05s ease-in-out;
}
.active {
  opacity: 100%;
}

.timeline-headlines {
  width: 100%;
}

.desktop-timeline,
.mobile-timeline {
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.desktop-timeline::-webkit-scrollbar,
.mobile-timeline::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

@media screen and (max-width: 768px) {
  .timeline-container::before {
    left: 8.5%;
  }
  .timeline-container::after {
    left: 8.5%;
  }
  .timeline-marker {
    left: 8.5%;
  }
  .timeline-right {
    width: 85%;
    justify-content: center;
  }
  .timeline-item {
    margin: 32px 0;
    min-height: 350px;
  }
  .timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
      to bottom,
      rgb(255, 255, 255) 35%,
      transparent 0
    );
    transform: translateX(-50%);
    z-index: 0;
    background-size: 200% 200%;
    transition:
      background-size 0.4s ease-in-out,
      background-size 0.4s ease-in-out;
  }

  .timeline-container.last-left-side-value::before {
    background: linear-gradient(
      to bottom,
      rgb(255, 255, 255) 55%,
      transparent 0
    ) !important;
  }
}

/* Desktop-specific styles */
@media (min-width: 768px) {
  .timeline-container::before {
    background: linear-gradient(
      to bottom,
      rgb(255, 255, 255) 35%,
      transparent 0
    );
    background-size: 100% 100%;
  }

  .timeline-container.last-left-side-value::before {
    background-size: 300% 300%; /* Simulates gradient stop change */
  }
  .timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(
      to bottom,
      rgb(255, 255, 255) 35%,
      transparent 0
    );
    transform: translateX(-50%);
    z-index: 0;
    background-size: 100% 100%;
    transition: background-size 0.4s ease-in-out;
  }

  .timeline-container.last-left-side-value::before {
    background-size: 200% 300%; /* Simulates gradient stop change */
  }
}


/*# sourceMappingURL=db4827e74c9ac333.css.map*/