.image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100vw;
}

.image.show-tablet {
  display: none;
}

@media screen and (max-width: 991px) {
  .image.hide-tablet {
    display: none;
  }

  .image.show-tablet {
    display: inline-block;
  }
}

@media screen and (max-width: 479px) {
  .image {
    object-position: 50% 100%;
  }
}


