

.offer_img{
    width: 100%;
    margin-top: 13%;
    
    text-align: center;
   


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

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


@media only screen and (max-width:991px) {

    .offer_img{
        width: 100%;
        margin-top: 1%;
    }  
    .offer_text_2{
        font-size: 20px;
  
    }  
}