.repu-banner {
  width: 100%;
  max-height: 815px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.7);
  animation: repuStampIn 1.2s ease-out forwards;
  animation-fill-mode: forwards;
}

.repu-banner img {
  width: 100%;
  height: auto;
  max-height: 815px;
  object-fit: cover;
  display: block;
}

@keyframes repuStampIn {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .repu-banner img {
    object-fit: contain;
  }
}