/******************* timeline start ******************/
.timeline-container {
  position: relative;
  min-height: 500vh;
  padding: 0;
}

.sticky-wrapper {
  position: sticky;
  height: 100vh;
  overflow: hidden;
}
@media (min-width: 320px) {
  .sticky-wrapper {
    top: 3.125rem;
    height: calc(100vh - 3.125rem);
  }
}
@media (min-width: 768px) {
  .sticky-wrapper {
    top: 86px;
    height: calc(100vh - 6.25rem);
  }
}

.timeline-content {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 320px) {
  .timeline-content {
    height: calc(100vh - 3.125rem);
  }
}
@media (min-width: 768px) {
  .timeline-content {
    height: calc(100vh - 6.25rem);
  }
}

.timeline-visual {
  position: absolute;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 320px) {
  .timeline-visual {
    height: calc(100vh - 3.125rem);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
  }
  .timeline-visual > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .timeline-visual > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}
@media (min-width: 768px) {
  .timeline-visual {
    height: calc(100vh - 6.25rem);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 15.125rem 3.25rem 17.5rem;
    grid-template-columns: 15.125rem 17.5rem;
    max-width: 35.875rem;
    gap: 3.25rem;
  }
  .timeline-visual > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .timeline-visual > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
@media (min-width: 991.98px) {
  .timeline-visual {
    height: calc(100vh - 6.25rem);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 26.25rem 5.625rem 30.375rem;
    grid-template-columns: 26.25rem 30.375rem;
    max-width: 62.25rem;
    gap: 5.625rem;
  }
  .timeline-visual > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .timeline-visual > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

.image-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-row: 1;
  grid-row: 1;
}
@media (min-width: 320px) {
  .image-section {
    height: auto;
    min-height: 8.75rem;
  }
}
@media (min-width: 768px) {
  .image-section {
    height: 100%;
  }
}
.image-section .image-container {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 320px) {
  .image-section .image-container {
    position: relative;
    height: 8.75rem;
  }
}
@media (min-width: 768px) {
  .image-section .image-container {
    position: absolute;
    height: 80%;
  }
}
.image-section .image-container .stage-image {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.image-section .image-container .stage-image.active {
  opacity: 1;
}
@media (min-width: 320px) {
  .image-section .image-container .stage-image img {
    height: 8.75rem;
    width: auto;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (min-width: 768px) {
  .image-section .image-container .stage-image img {
    width: 100%;
    height: auto;
  }
}

.text-section {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media (min-width: 320px) {
  .text-section {
    -ms-grid-row: 2;
    grid-row: 2;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 1rem;
  }
}
@media (min-width: 768px) {
  .text-section {
    -ms-grid-row: 1;
    grid-row: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.text-section .info-card {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
@media (min-width: 320px) {
  .text-section .info-card {
    padding: 0 1rem;
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .text-section .info-card {
    padding: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.text-section .info-card.active {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 320px) {
  .text-section .info-card.active {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@media (min-width: 768px) {
  .text-section .info-card.active {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
  }
}
@media (min-width: 320px) {
  .text-section .info-card h3 img {
    height: 5.0625rem;
  }
}
@media (min-width: 768px) {
  .text-section .info-card h3 {
    -webkit-transform: translateX(-2.5rem);
    transform: translateX(-2.5rem);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .text-section .info-card h3 img {
    height: 5.75rem;
  }
}
.text-section .info-card ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #6D3526;
  font-weight: 400;
}
.text-section .info-card ul li .num {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.875rem;
          flex: 0 0 1.875rem;
  width: 1.875rem;
  text-align: right;
  margin-right: 0.3125rem;
}
@media (min-width: 320px) {
  .text-section .info-card ul li {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}
@media (min-width: 768px) {
  .text-section .info-card ul li {
    font-size: 1.25rem;
    line-height: 1.9;
  }
}

.progress-sidebar {
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 2rem;
  right: 0;
  top: 0;
  height: 100%;
}
.progress-sidebar .progress-markers {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}
.progress-sidebar .progress-markers .progress-marker {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.8rem;
  height: 0;
}
.progress-sidebar .progress-markers .progress-marker .marker-label {
  font-size: 1rem;
  color: #AD6B6B;
  font-weight: 400;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.progress-sidebar .progress-markers .progress-marker .marker-label.active {
  opacity: 1;
}
.progress-sidebar .progress-markers .progress-marker .marker-line {
  height: 0.125rem;
  background-color: #535353;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .progress-sidebar .progress-markers .progress-marker .marker-line {
    width: 0.75rem;
  }
}
@media (min-width: 991.98px) {
  .progress-sidebar .progress-markers .progress-marker .marker-line {
    width: 1.375rem;
  }
}
.progress-sidebar .progress-markers .progress-marker .marker-line.active {
  background-color: #C98585;
}
@media (min-width: 768px) {
  .progress-sidebar .progress-markers .progress-marker .marker-line.active {
    width: 1.375rem;
  }
}
@media (min-width: 991.98px) {
  .progress-sidebar .progress-markers .progress-marker .marker-line.active {
    width: 2.625rem;
  }
}
@media (min-width: 320px) {
  .progress-sidebar {
    display: none;
  }
}
@media (min-width: 768px) {
  .progress-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 100px;
  }
}
@media (min-width: 991.98px) {
  .progress-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 120px;
  }
}