.offer_img{
    transform: scale(0.1);
    opacity: 0;
    animation: zoomIn 1s ease-out forwards;
  }
  @keyframes zoomIn {
    from {
      transform: scale(0.0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
}

.promo_img {
    opacity: 0;
    filter: blur(10px);
    animation: fadeInBlur 1s ease-out forwards;
    animation-delay: 1s; /* Καθυστέρηση 4 δευτερόλεπτα */
}

@keyframes fadeInBlur {
    from {
        opacity: 0;
        filter: blur(80px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}
