.myradif {
    z-index: 1;
    position: relative;
    max-height: 150px;
    overflow: hidden;
    border-radius: 15px;
    margin: 10px 10px;
}
@media screen and (min-width: 768px){
    .myradif{
        max-width: 46%;
    }
}
@media screen and (max-width: 425px){
    .myradif{
        margin-top: 10px;
        max-width: 100%;
    }
}
.myradif:hover {
    max-height: 150px;
    overflow: hidden;
}
.myradif img{
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0;
    transition: transform 0.5s;
}

.myradif:hover img {
    z-index: 0;
    transform: scale(1.1);
}

.myradif span{
    z-index: 2;
    position: absolute;
    left: 30px;
    top: 40%;
    transition: all 0.4s;
}

.myradif:hover span{
    transform: translateX(-20px);
    opacity: 0;
}
.bezudi p{
    position: absolute;
    z-index: 3;
    top: 75%;
    font-size: 13px;
    padding: 8px 2px;
    color: white;
    width: fit-content;
    background-color: red;
    border-radius: 100%;
}
@media screen and (max-width: 425px){
    .bezudi p{
       top: 110%;
       padding: 12px 2px;
    }
}

@media screen and (min-width: 425px) and (max-width: 768px){
    .bezudi p{
       top: 120%;
       padding: 12px 2px;
    }
}
@media screen and (min-width: 425px) and (max-width: 475px){
    .bezudi p{
       top: 120%;
       padding: 13px 2px;
    }
}

.bezudi{
    z-index: 999;
}
.radifakhar{
    transform: translateY(-30px);
}