.locked {
    opacity: 0.5;
    position: absolute;
    width: 93%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    border-radius:10px;
    transition: 0.5s;
}
.locked-img {
    width: 90%;
    height: auto;
    object-fit: cover;
    transition: 0.5s;
}


.locked:hover {
    opacity: 1;
    
}

.locked-img:hover {
    opacity: 1;
    
    transform: scale(1.1);
}