.sale__card-img {
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  width: 80%;
  height: 150px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.35);
  overflow: hidden;
  transition: .5s;
  pointer-events: none;
}

.sale__card:hover .sale__card-img {
  width: 90%;
  height: 250px;
}

@media screen and (max-width: 926px) {
  .sale__card:hover .sale__card-img {
    width: 80%;
    height: 150px;
  }
}