div.block-image-jumbotron {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  box-sizing: border-box;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 768px) {
  div.block-image-jumbotron {
    padding: var(--wp--preset--spacing--xl);
  }
}
div.block-image-jumbotron img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 768px) {
  div.block-image-jumbotron img {
    width: 100%;
    height: auto;
  }
}