.page__body .main {
  border-radius: 40px;
  width: 100%;
}
.page__body .history {
  border-bottom: 3px solid rgba(153, 153, 153, 0.1);
  display: grid;
  grid-template-rows: auto;
  padding: 30px 0;
}
.page__body .history_col .history_img {
  margin-top: 60px;
}
.page__body .history_col .history_img .img_block {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .page__body .history_col {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
  }
}
.page__body .history:nth-of-type(1) {
  border-top: 3px solid rgba(153, 153, 153, 0.1);
  margin-top: 60px;
}
.page__body .history dt,
.page__body .history dd {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1;
}
.page__body .history dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1em;
  margin-left: 2em;
}
.page__body .history dd img {
  width: min(50%, 320px);
}
@media screen and (min-width: 576px) {
  .page__body .history {
    grid-template-columns: 30% 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page__body .history dt {
    justify-self: center;
  }
  .page__body .history dd {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}