:root {
  --header-height: 80px;
}
@media screen and (max-width: 1000px) {
  :root {
    --header-height: 60px;
  }
}

.mission__blockContainer {
  margin: 50px auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mission__blockContainer .template__multipleGroup {
  grid-template-columns: repeat(2, 30%);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .mission__blockContainer .template__multipleGroup {
    grid-template-columns: repeat(1, 1fr);
  }
}