:root {
  --bs-border-radius: 1.4rem;
}

.eye-block.timeline {
  position: relative;
  padding: 4rem 0 0 0;
}
.eye-block.timeline .timeline__line-track {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 4px;
  background: #AC872E;
  opacity: 0.2;
  border-radius: 2rem;
}
.eye-block.timeline .timeline__line-fill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 4px;
  height: 0%;
  background: #AC872E;
  z-index: 1;
  transition: height 0.1s linear;
  border-radius: 2rem;
}
.eye-block.timeline .timeline__items {
  position: relative;
  display: flex;
  flex-direction: column;
}
.eye-block.timeline .timeline__step {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  position: relative;
  z-index: 5;
  opacity: 0.35;
}
.eye-block.timeline .timeline__step:not(:first-child) {
  margin-top: calc(var(--timeline-step-overlap, 0px) * -1);
}
.eye-block.timeline .timeline__step.is-active {
  opacity: 1;
}
.eye-block.timeline .timeline__step.is-active .timeline__item-label {
  background: #AC872E;
  color: #ffffff;
}
.eye-block.timeline .timeline__step:nth-child(odd) .timeline__item-card {
  grid-column: 1;
  grid-row: 1;
  margin-left: auto;
}
.eye-block.timeline .timeline__step:nth-child(odd) .timeline__item-dot-col {
  grid-column: 2;
}
.eye-block.timeline .timeline__step:nth-child(odd) .timeline__item-empty {
  grid-column: 3;
}
.eye-block.timeline .timeline__step:nth-child(even) .timeline__item-card {
  grid-column: 3;
  grid-row: 1;
}
.eye-block.timeline .timeline__step:nth-child(even) .timeline__item-dot-col {
  grid-column: 2;
}
.eye-block.timeline .timeline__step:nth-child(even) .timeline__item-empty {
  grid-column: 1;
}
.eye-block.timeline .timeline__item-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.eye-block.timeline .timeline__item-label {
  border: 1.5px solid #AC872E;
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  color: #AC872E;
  background: transparent;
  transition: background 0.4s ease, color 0.4s ease;
  white-space: nowrap;
  opacity: 0;
}
.is-active .eye-block.timeline .timeline__item-label {
  background: #AC872E;
  color: #ffffff;
}
.eye-block.timeline .timeline__item-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #AC872E;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1.5px #AC872E;
}
.eye-block.timeline .timeline__item-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  max-width: 400px;
}
.eye-block.timeline .timeline__item-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
}
.eye-block.timeline .timeline__item-card .timeline__item-content {
  padding: 2rem;
}
.eye-block.timeline .timeline__item-card h3.timeline__item-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 0.25rem 0;
  color: #373737;
  font-family: "Poppins", sans-serif;
}
.eye-block.timeline .timeline__item-card p.timeline__item-description {
  font-size: 0.9rem;
  color: #373737;
  margin: 0;
  line-height: 1.5;
}
.eye-block.timeline .timeline__final-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
  margin-top: 5rem;
}
.eye-block.timeline .timeline__final-wrapper .timeline__final-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #AC872E;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1.5px #AC872E;
  flex-shrink: 0;
  margin-bottom: 1rem;
}
.eye-block.timeline .timeline__final {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid #AC872E;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 400px;
  width: 100%;
}
.eye-block.timeline .timeline__final .timeline__final-label {
  font-size: 0.8rem;
  color: #AC872E;
  margin-bottom: 0.5rem;
}
.eye-block.timeline .timeline__final .timeline__final-title {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #373737;
  margin-bottom: 2rem;
}
.eye-block.timeline .timeline__final .timeline__final-sublabel {
  font-size: 0.8rem;
  color: #858585;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .eye-block.timeline .timeline__items {
    gap: 3rem;
  }
  .eye-block.timeline .timeline__step {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .eye-block.timeline .timeline__step:nth-child(odd) .timeline__item-dot-col, .eye-block.timeline .timeline__step:nth-child(even) .timeline__item-dot-col {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 1rem;
  }
  .eye-block.timeline .timeline__step:nth-child(odd) .timeline__item-card, .eye-block.timeline .timeline__step:nth-child(even) .timeline__item-card {
    grid-column: 1;
    grid-row: 2;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  .eye-block.timeline .timeline__step:nth-child(odd) .timeline__item-empty, .eye-block.timeline .timeline__step:nth-child(even) .timeline__item-empty {
    display: none;
  }
}
.eye-block.timeline.styling-castle {
  --castle-radius: 0.25rem;
  --notch: 1.25rem;
}
.eye-block.timeline.styling-castle .timeline__item-card {
  border-radius: var(--castle-radius);
  mask-image: radial-gradient(circle at top left, transparent var(--notch), black calc(var(--notch) + 1px)), radial-gradient(circle at top right, transparent var(--notch), black calc(var(--notch) + 1px)), radial-gradient(circle at bottom left, transparent var(--notch), black calc(var(--notch) + 1px)), radial-gradient(circle at bottom right, transparent var(--notch), black calc(var(--notch) + 1px));
  mask-composite: intersect;
  -webkit-mask-image: radial-gradient(circle at top left, transparent var(--notch), black calc(var(--notch) + 1px)), radial-gradient(circle at top right, transparent var(--notch), black calc(var(--notch) + 1px)), radial-gradient(circle at bottom left, transparent var(--notch), black calc(var(--notch) + 1px)), radial-gradient(circle at bottom right, transparent var(--notch), black calc(var(--notch) + 1px));
  -webkit-mask-composite: destination-in;
}
.eye-block.timeline.styling-castle .timeline__line-track,
.eye-block.timeline.styling-castle .timeline__line-fill {
  border-radius: var(--castle-radius);
}
.eye-block.timeline.styling-castle .timeline__item-label {
  border-radius: var(--castle-radius);
}
.eye-block.timeline.styling-castle .timeline__item-card {
  box-shadow: none;
}
.eye-block.timeline.styling-castle .timeline__item-card .timeline__item-content {
  padding: 3rem;
}
.eye-block.timeline.styling-castle .timeline__item-card img {
  border-radius: var(--castle-radius);
}
.eye-block.timeline.styling-castle .timeline__item-card h3.timeline__item-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
}
.eye-block.timeline.styling-castle .timeline__final {
  border-radius: var(--castle-radius);
}
.eye-block.timeline.styling-castle .timeline__final-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .eye-block.timeline.styling-castle {
    --notch: 0.75rem;
  }
}

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