.senior__history {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}
.senior-history__box {
  height: 400px;
  width: auto;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.senior-history__img {
  height: 100%;
  width: auto;
}
@media (max-width: 767px) {
  .senior__history {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .senior-history__box {
    height: 300px;
    width: 100%;
    min-width: unset;
  }
  .senior-history__desc {
    margin-bottom: -40px;
  }
}
