.vision-mission {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: min(90%, 70rem);
  background: white;
  margin: -6rem auto 3rem;
  position: relative;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(25, 45, 102, 0.15);
  border-radius: 0.5rem;
}
.vision-mission .vision-text {
  flex: 1.1;
}
.vision-mission .vision {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.vision-mission .vision-write {
  margin-top: 1rem;
}
.vision-mission img {
  flex: 1;
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: 0.4rem;
}

.history-stage {
  width: 100%;
  padding: 3.5rem clamp(1.5rem, 8vw, 10rem);
  background: var(--greyish);
  display: flex;
  justify-content: center;
}
.history-stage.alt {
  background: #fff;
}
.history-stage .history-content {
  max-width: 46rem;
}
.history-stage .history-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.vision-heading,
.history-heading {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
}
.vision-write,
.history-write {
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
  margin-top: 1rem;
}

@media screen and (max-width: 1300px) {
  .vision-mission {
    width: 88%;
  }
}

@media screen and (max-width: 900px) {
  .vision-mission {
    flex-direction: column;
    margin-top: -4rem;
    padding: 2.2rem;
  }
  .vision-mission img {
    order: -1;
    height: 14rem;
  }
  .history-stage {
    padding: 2.5rem 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  .vision-mission {
    width: 90%;
    margin-top: -3rem;
    padding: 1.75rem;
  }
  .vision-mission img {
    height: 11rem;
  }
  .vision-heading,
  .history-heading {
    font-size: 1.5rem;
  }
}
