/* ── About Us page overrides ── */

.about-page {
  background: #e5e6e7;
  color: #333;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Force the expanded menu always visible on this page */
.about-page .about-expanded-menu {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
  position: fixed;
  top: 0;
  padding: 0 4.17vw;
  min-height: 7.5vw;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ── Search bar (replaces × close button) ── */
.about-search-wrap {
  flex: 0 0 10vw;
  position: relative;
  display: flex;
  align-items: center;
}

.about-search-svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.about-search-input {
  width: 100%;
  padding: 5px 12px 5px 28px;
  background: #e5e6e7;
  border: 1px solid #b5b5b5;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75vw;
  outline: none;
  color: #77797b;
}

/* ── Center column: logo stacked above links ── */
.about-menu-center {
  flex-direction: column !important;
  gap: 0.5vw !important;
  align-items: center;
}

.about-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.about-nav-logo-img {
  height: 3.5vw;
  width: auto;
  object-fit: contain;
}

.about-nav-links {
  display: flex;
  align-items: center;
  gap: 1.74vw;
}

/* ── Page body offset for fixed header ── */
.about-main {
  position: relative;
  padding-top: 3.5vw;
  display: flex;
  flex-direction: column;
}

/* Background circles visible in the about-content section */
.about-content .bg-circles {
  z-index: 1;
}

/* ── Content layout: images left, text right ── */
.about-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 14vw 4.167vw;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* ── Image group: 4 overlapping circles ── */
.about-images {
  position: relative;
  flex-shrink: 0;
  width: 21.875vw;
  height: 21.875vw;
  margin-right: -4.167vw;
  overflow: visible;
  margin-top: 3vw;
}

/* Large circle — centered in the image group */
.about-circle-main {
  position: absolute;
  width: 21.875vw;
  height: 21.875vw;
  border-radius: 50%;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: 150%;
  z-index: 2;
}

.about-circle-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transform-origin: center center;
}

/* Medium circle */
.about-circle-sm-topleft {
  position: absolute;
  width: 40.476%;
  height: 40.476%;
  border-radius: 50%;
  overflow: hidden;
  top: 80%;
  left: -40%;
  z-index: 3;
}

.about-circle-sm-topleft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Small circle */
.about-circle-xs-botleft {
  position: absolute;
  width: 40.476%;
  height: 40.476%;
  border-radius: 50%;
  overflow: hidden;
  top: 80%;
  left: -85%;
  z-index: 4;
}

.about-circle-xs-botleft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tiny circle — sits just right of the main image group */
.about-circle-sm-botright {
  position: absolute;
  width: 8.854vw;
  height: 8.854vw;
  border-radius: 50%;
  overflow: hidden;
  top: 2vw;
  right: -8.333vw;
  z-index: 4;
  flex-shrink: 0;
}

.about-circle-sm-botright img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Text block — overlaps right half of large circle ── */
.about-text-block {
  max-width: 37.5vw;
  flex-shrink: 0;
  margin-left: -5.208vw;
  z-index: 5;
  position: relative;
  margin-top: 3vw;
}

.about-heading {
  font-family: 'Gontserrat-Medium', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.5vw;
  color: #e31d36;
  line-height: 1.1;
  margin-bottom: 1.042vw;
  letter-spacing: -0.01em;
}

.about-body-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375vw;
  font-weight: 500;
  color: #555;
  line-height: 1.4;
  letter-spacing: -0.05em;
}

.about-body-text {
  padding-left: 12.5vw;
  position: relative;
}

.about-body-text p:last-child {
  margin-bottom: 0;
}

.about-body-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-body-clamped.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.about-read-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.4vw;
}

.about-read-more {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
}

.about-read-more .founder-read-more-img {
  height: 1.67vw;
  width: auto;
  display: block;
}

.about-read-more .founder-read-less-img {
  height: 1.67vw;
  width: auto;
  display: none;
}

.about-read-more.expanded .founder-read-more-img {
  display: none;
}

.about-read-more.expanded .founder-read-less-img {
  display: block;
}

/* ── Vision / Mission / Values ── */
.vmv-section {
  position: relative;
  z-index: 2;
  padding: 2vw 8vw 10vw;
  width: 100%;
  box-sizing: border-box;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 22vw));
  gap: 0;
  text-align: center;
  justify-content: center;
}

.vmv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1vw 3vw 2vw;
}

.vmv-heading {
  font-family: 'Gontserrat-Medium', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.6vw;
  color: #e31d36;
  line-height: 1.1;
  margin: 0 0 1.2vw 0;
}

.vmv-circle {
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  /* background: #fff;
  box-shadow: 0 2px 18px rgba(0,0,0,0.10); */
  margin-bottom: 0.5vw;
}

.vmv-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vmv-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1vw;
  font-weight: 500;
  color: #555;
  line-height: 1.5;
  letter-spacing: -0.05em;
  margin: 0;
  max-width: 15vw;
  text-align: center;
}

/* ── Our Founders ── */
.founders-section {
  position: relative;
  z-index: 3;
  background: #e5e6e7;
  padding: 6vw 0 4vw;
  width: 100%;
  overflow: hidden;
}

.founders-heading {
  font-family: 'Gontserrat-Medium', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.3vw;
  color: #e31d36;
  text-align: center;
  margin: -3.125vw 0 -5.208vw -16vw;
  line-height: 1.1;
  position: relative;
  z-index: 4;
}

/* Each row is a two-column grid */
.founders-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.founders-row--1 {
  height: 23vw;
  overflow: visible;
}

/* Row 2 pulls up to overlap row 1's circle */
.founders-row--2 {
  margin-top: 0;
  height: 23vw;
  overflow: visible;
}

.founders-row--last .founders-cell--bio-durgesh {
  position: relative;
  overflow: visible;
}

.founders-row--last .founder-bio-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

/* ── Cells ── */
.founders-cell {
  display: flex;
  flex-direction: column;
}

/* Anil bio — left cell of row 1, centered text */
.founders-cell--bio-anil {
  justify-content: flex-start;
  align-items: flex-end;
  padding: 4.5vw 0 0 6.25vw;
  margin-right: 5.729vw;
  position: relative;
  z-index: 1;
}

/* Anil circle — right cell of row 1 */
.founders-cell--circle-anil {
  align-items: flex-start;
  padding: 0 3.125vw 0 0;
  margin-left: -4.167vw;
  position: relative;
}

/* Durgesh circle — left cell of row 2 */
.founders-cell--circle-durgesh {
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 3.125vw 0 0;
  position: relative;
  overflow: hidden;
}

.founders-cell--circle-durgesh .founder-circle-wrap {
  position: absolute;
  bottom: 0;
  right: 3.125vw;
}

.founder-name--durgesh {
  position: absolute !important;
  bottom: 4vw !important;
  left: 21vw !important;
  z-index: 2;
  white-space: nowrap;
}

.founder-name--kanica {
  left: 19vw !important;
}

/* Durgesh bio — right cell of row 2 */
.founders-cell--bio-durgesh {
  justify-content: flex-start;
  padding: 4.5vw 6.25vw 0 0;
  margin-left: -1.563vw;
}

/* ── Bio text ── */
.founder-bio {
  font-family: 'Montserrat', sans-serif;
  font-size: 1vw;
  font-weight: 500;
  color: #555;
  line-height: 1.5;
  letter-spacing: -0.05em;
  margin: 0;
  max-width: 23.438vw;
}

.founder-bio--anil   { text-align: right; }
.founder-bio--durgesh { text-align: left; }

.founder-bio-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.5em;
}

.founder-bio-clamped.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.founder-read-more {
  background: none;
  border: none;
  padding: 0;
  margin-top: 0.4vw;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.founder-read-more-img {
  height: 2.2vw;
  width: auto;
  display: block;
}

.founder-read-less-img {
  height: 2.2vw;
  width: auto;
  display: none;
}

.founder-read-more.expanded .founder-read-more-img {
  display: none;
}

.founder-read-more.expanded .founder-read-less-img {
  display: block;
}


.founder-bio-wrap {
  border-top: 1px solid #fff;
  padding-top: 0.625vw;
  margin-top: 1.5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  z-index: 10;
  background: #e5e6e7;
}

.founders-cell--bio-durgesh .founder-bio-wrap {
  align-items: flex-start;
}

/* ── Circle ── */
.founder-circle {
  width: 20.833vw;
  height: 20.833vw;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.founder-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-circle-1 {}

.founder-circle-2 img{
  /* transform: scale(1.5); */
  transform-origin: center center;
}


/* ── Name label ── */
.founder-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25vw;
  font-weight: 600;
  color: rgb(29, 61, 120);
  letter-spacing: 0.01em;
  position: absolute;
  bottom: 4.167vw;
  left: 15.625vw;
}

.founder-circle-wrap {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.founder-name--anil {
  position: absolute !important;
  bottom: 6vw;
  left: 16.5vw;
  white-space: nowrap;
}


/* ── Responsive — nav only (all components scale via vw) ── */
@media (max-width: 1400px) {
  .about-page .about-expanded-menu { min-height: 80px; padding: 0 40px; }
  .about-nav-logo-img { height: 40px; }
  .about-search-input { font-size: 11px; }
  .about-main { padding-top: 80px; }
  .about-content { padding: 6vw 4.167vw; }
}

@media (max-width: 768px) {

  /* ── Nav ── */
  .about-page #fixedNav {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 3vw 4vw;
    background: #e5e6e7;
    z-index: 1000;
  }

  .about-page #fixedNav .fixed-nav-logo {
    height: 14vw;
    width: auto;
    display: block;
  }

  .about-page #fixedNav .fixed-nav-menu {
    display: none;
  }

  .about-page #expandedMenu {
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    flex-direction: column;
    align-items: center;
    padding: 0 4vw 4vw;
    gap: 0;
    min-height: unset;
    top: 0;
  }

  .about-page .menu-close {
    display: none;
  }

  .about-page #expandedMenu .menu-social {
    order: 1;
    align-self: flex-end;
    gap: 2vw;
    margin-bottom: 2vw;
  }

  .about-page #expandedMenu .menu-social .social-icon img {
    height: 3vw;
    width: auto;
  }

  .about-page #expandedMenu .menu-center {
    order: 2;
    flex-direction: column !important;
    gap: 0.3vw !important;
    align-items: center;
    width: 100%;
  }

  .about-page #expandedMenu .menu-item {
    font-size: 2.5vw;
  }

  /* ── Main ── */
  .about-main {
    padding-top: 0;
  }

  /* ── About content — stack vertically ── */
  .about-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 8vw 5vw 12vw;
    gap: 0;
    overflow: visible;
  }

  .about-content .bg-circles,
  .vmv-section .bg-circles {
    display: none;
  }

  /* Images block — full width, centered */
  .about-images {
    width: 60vw;
    height: 60vw;
    margin-right: 0;
    margin-bottom: 4vw;
    position: relative;
    overflow: visible;
  }

  .about-circle-main {
    width: 60vw;
    height: 60vw;
  }

  .about-circle-sm-topleft {
    width: 28vw;
    height: 28vw;
    top: -10%;
    left: auto;
    right: -35%;
  }

  .about-circle-xs-botleft {
    width: 22vw;
    height: 23vw;
    top: 35%;
    left: auto;
    right: -30%;
  }

  /* Text block — full width below images */
  .about-text-block {
    max-width: 100%;
    margin-left: 0;
    padding: 0;
    position: relative;
    margin-top: 14vw;
  }

  .about-heading {
    font-size: 7vw;
    margin-bottom: 3vw;
  }

  .about-body-text {
    padding-left: 0;
  }

  .about-body-text p {
    font-size: 3.2vw;
    line-height: 1.6;
  }

  .about-circle-sm-botright {
    display: none;
  }

  /* ── VMV section ── */
  .vmv-section {
    padding: 6vw 4vw 10vw;
  }

  .vmv-grid {
    grid-template-columns: 1fr;
    gap: 8vw;
  }

  .vmv-card {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    gap: 4vw;
  }

  .vmv-circle {
    width: 28vw;
    height: 28vw;
    flex-shrink: 0;
    margin-bottom: 0;
    order: 1;
  }

  /* Heading + text wrapped in a column */
  .vmv-heading {
    font-size: 6vw;
    margin-bottom: 2vw;
    text-align: left;
    order: 2;
    width: 100%;
  }

  .vmv-text {
    font-size: 3.2vw;
    max-width: 100%;
    text-align: left;
    order: 3;
    width: 100%;
    line-height: 1.6;
    margin-left: 0;
  }

  /* Wrap heading + text in a flex column using pseudo grid */
  .vmv-card {
    display: grid;
    grid-template-columns: 28vw 1fr;
    grid-template-rows: auto auto;
    column-gap: 4vw;
    row-gap: 1vw;
    align-items: start;
  }

  .vmv-circle {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .vmv-heading {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
  }

  .vmv-text {
    grid-column: 2;
    grid-row: 2;
  }

  /* ── Founders — vertical stack on mobile ── */
  .founders-section {
    padding: 10vw 5vw 8vw;
    overflow: visible;
  }

  .founders-heading {
    font-size: 7vw;
    margin: 0 0 8vw 0;
    position: relative;
    top: 0;
    left: 0;
    text-align: center;
  }

  .founders-row {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .founders-row--2 {
    margin-top: 10vw;
  }

  .founders-cell {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .founders-cell--circle-anil,
  .founders-cell--circle-durgesh {
    padding: 0;
    margin: 0;
    order: 1;
  }

  .founders-cell--bio-anil,
  .founders-cell--bio-durgesh {
    padding: 4vw 5vw 0;
    margin: 0;
    order: 2;
    width: 100%;
  }

  .founder-circle {
    width: 55vw;
    height: 55vw;
  }

  .founder-bio {
    font-size: 3.2vw;
    max-width: 100%;
    line-height: 1.6;
    text-align: center;
  }

  .founder-bio--anil,
  .founder-bio--durgesh {
    text-align: center;
  }

  .founder-name {
    font-size: 4vw;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    text-align: center;
    margin-top: 2vw;
    display: block;
  }

  .founder-name--durgesh {
    font-size: 4vw;
    position: relative;
    bottom: auto;
    left: auto;
    margin: 2vw 0 0;
    text-align: center;
    order: 2;
    margin-bottom: 0;
  }

  .founders-cell--circle-durgesh .founder-circle {
    order: 1;
  }

  .founder-bio-wrap {
    align-items: center;
  }

  .founder-read-more {
    margin-left: auto;
    margin-right: auto;
  }

  .founder-read-more-img,
  .founder-read-less-img {
    height: 6vw;
  }

  .about-read-more .founder-read-more-img,
  .about-read-more .founder-read-less-img {
    height: 6vw;
  }

  /* ── Footer mobile ── */
  .about-page .footer {
    padding: 6vw 5vw 8vw;
  }

  .about-page .footer-container {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .about-page .footer-logo {
    width: auto;
    margin-right: 0;
    margin-bottom: 5vw;
  }

  .about-page .footer-logo-img {
    width: 22vw;
    height: auto;
  }

  .about-page .footer-columns-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .about-page .footer-titles-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
  }

  .about-page .footer-titles-row .footer-column:nth-child(1),
  .about-page .footer-titles-row .footer-column:nth-child(4) {
    display: none;
  }

  .about-page .footer-titles-row .footer-column:nth-child(2) { grid-column: 1; }
  .about-page .footer-titles-row .footer-column:nth-child(3) { grid-column: 2; }

  .about-page .footer-full-line { margin: 3vw 0; }

  .about-page .footer-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
    row-gap: 5vw;
  }

  .about-page .footer-content-row .footer-column {
    width: auto;
    min-width: unset;
  }

  .about-page .footer-content-row .footer-column:nth-child(1) { grid-column: 1; grid-row: 2; }
  .about-page .footer-content-row .footer-column:nth-child(2) { grid-column: 1; grid-row: 1; }
  .about-page .footer-content-row .footer-column:nth-child(3) { grid-column: 2; grid-row: 1 / 3; }
  .about-page .footer-content-row .footer-column:nth-child(4) { grid-column: 1 / -1; grid-row: 3; }

  .about-page .footer-content-row .footer-column:nth-child(1)::before {
    content: 'CONTACT';
    display: block;
    color: #e31d36;
    font-size: 3.5vw;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 3vw;
    font-family: 'Montserrat', sans-serif;
  }

  .about-page .footer-title { font-size: 3.5vw; margin-bottom: 2vw; }
  .about-page .footer-links a { font-size: 2.8vw; }
  .about-page .footer-links li { margin-bottom: 1.8vw; }
  .about-page .footer-contact p { font-size: 2.8vw; line-height: 1.5; }
  .about-page .contact-icon-img { width: 4vw; height: 4vw; }
  .about-page .contact-group { gap: 2vw; margin-bottom: 3vw; }

  .about-page .footer .menu-social {
    gap: 3vw;
    margin-top: 3vw;
    justify-content: flex-start;
    position: static;
    align-self: auto;
    margin-bottom: 0;
  }

  .about-page .footer .menu-social .social-icon img { height: 5vw; width: auto; }

  .about-page .newsletter-form { width: 100%; max-width: 100%; padding: 3vw; }
  .about-page .newsletter-input { font-size: 3vw; padding: 2vw 0; }
  .about-page .newsletter-checkbox label { font-size: 2.8vw; }
  .about-page .checkbox-input { width: 3.5vw; height: 3.5vw; }
}

/* ── Our Progress Timeline ── */
.progress-section {
  width: 100%;
  background: #e5e6e7;
  padding: 6vw 0;
  box-sizing: border-box;
  overflow: hidden;
}

.progress-heading {
  font-family: 'Gontserrat-Medium', sans-serif;
  font-weight: 700;
  font-size: 3vw;
  color: #e31d36;
  text-align: center;
  margin: 0 0 4vw 0;
  line-height: 1.1;
}

.timeline-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.timeline-track {
  position: relative;
  display: flex;
  align-items: stretch;
  min-width: max-content;
  padding: 0 4vw;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  background: #b0b2b4;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.tl-item {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  width: 8vw;
  flex-shrink: 0;
  z-index: 1;
}

.tl-above .tl-text {
  grid-row: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0.5vw;
}

.tl-above .tl-dot-wrap {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-above .tl-dot-wrap .tl-year {
  order: 2;
  margin-top: 0.2vw;
}

.tl-above .tl-empty {
  grid-row: 3;
}

.tl-below .tl-empty {
  grid-row: 1;
}

.tl-below .tl-dot-wrap {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-below .tl-dot-wrap .tl-year {
  order: -1;
  margin-bottom: 0.2vw;
}

.tl-below .tl-text {
  grid-row: 3;
  display: flex;
  align-items: flex-start;
  padding-top: 0.5vw;
}

.tl-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65vw;
  font-weight: 500;
  color: #555;
  line-height: 1.45;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0;
  width: 100%;
  padding: 0 0.3vw;
  box-sizing: border-box;
}

.tl-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5vw 0;
}

.tl-img-circle {
  width: 8vw;
  height: 8vw;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.tl-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tl-dot {
  width: 0.8vw;
  height: 0.8vw;
  border-radius: 50%;
  background: #e31d36;
  flex-shrink: 0;
}

.tl-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7vw;
  font-weight: 700;
  color: #333;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .progress-heading {
    font-size: 6vw;
    margin-bottom: 6vw;
  }

  .timeline-scroll-wrap {
    overflow-x: visible;
  }

  .timeline-track {
    flex-direction: column;
    align-items: stretch;
    min-width: unset;
    padding: 0 5vw;
    position: relative;
  }

  .timeline-line {
    top: 0;
    bottom: 0;
    left: 10vw;
    right: auto;
    width: 1.5px;
    height: 100%;
    transform: none;
  }

  .tl-item {
    display: grid;
    grid-template-columns: 10vw 20vw 1fr;
    grid-template-rows: 1fr;
    width: 100%;
    padding: 4vw 0;
    align-items: center;
    gap: 0;
  }

  .tl-above .tl-dot-wrap,
  .tl-below .tl-dot-wrap {
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .tl-above .tl-dot-wrap .tl-year,
  .tl-below .tl-dot-wrap .tl-year {
    order: unset;
    margin: 0;
    font-size: 3.2vw;
  }

  .tl-above .tl-text,
  .tl-below .tl-text {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    align-items: center;
    padding: 0 0 0 4vw;
  }

  .tl-above .tl-empty,
  .tl-below .tl-empty {
    display: none;
  }

  .tl-img-wrap {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    justify-content: center;
    padding: 0 3vw;
  }

  .tl-img-circle {
    width: 18vw;
    height: 18vw;
  }

  .tl-text p {
    font-size: 3.2vw;
    line-height: 1.6;
    text-align: left;
  }

  .tl-dot {
    width: 3vw;
    height: 3vw;
  }
}
