.mv-steps {
  --mv-steps-number-color: #023e84;
  --mv-steps-number-bg: #e8eff9;
  --mv-steps-title-color: #023e84;
  --mv-steps-dotted-color: #d3deed;
  padding: 60px 0;
}

.mv-steps__inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.mv-steps__header {
  text-align: center;
  margin-bottom: 48px;
}

.mv-steps__header-icon {
  display: block;
  margin: 0 auto 16px;
  max-width: 100%;
  height: auto;
}

.mv-steps__headline {
  margin: 0;
  color: #023e84;
  font-family: 'Cairo', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
}

.mv-steps__timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: flex-start;
}

.mv-steps__step {
  min-width: 0;
  position: relative;
  text-align: left;
}

.mv-steps__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mv-steps-number-bg);
  color: var(--mv-steps-number-color);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 24px;  
  line-height: 28px;
  margin: 0 auto 12px;
}

.mv-steps__step-title {
  margin: 0 0 8px;
  color: var(--mv-steps-title-color);
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  font-family: Cairo;
font-style: normal;
font-weight: 700;
font-size: 16px;
line-height: 24px;
text-align: left;
}

.mv-steps__step-description {
  margin: 0;
  color: #5a7a97;
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
}

.mv-steps__dotted-line {
  position: absolute;
    top: 28px;
    left: 40%;
    width: 100%;
    height: 2px;
    margin: 0 -10px;
    z-index: -1;
}

@media (max-width: 1024px) {
  .mv-steps__timeline {
    gap: 16px;
  }

  .mv-steps__step-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .mv-steps__step-title {
    font-size: 13px;
  }

  .mv-steps__step-description {
    font-size: 12px;
  }

 
}

@media (max-width: 768px) {
  .mv-steps__timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .mv-steps__step {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 0;
    flex: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 32px;
  }

  .mv-steps__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    bottom: -24px;
    left: 14px;
    width: 4px;
    background: radial-gradient(
      circle,
      var(--mv-steps-dotted-color) 2px,
      transparent 2.5px
    ) center top / 4px 10px repeat-y;
  }

  .mv-steps__step-number {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 32px;
    height: 32px;
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    position: relative;
    z-index: 1;
  }

  .mv-steps__step-title {
    grid-column: 2;
    margin: 0;
    font-size: 16px;
    line-height: 24px;
  }

  .mv-steps__step-description {
    grid-column: 2;
    margin: 0;
    font-size: 16px;
    line-height: 21px;
  }

  .mv-steps__dotted-line {
    display: none;
  }

  .mv-steps__headline {
    font-size: 28px;
    line-height: 34px;
  }
}
