/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 06 2026 | 09:19:39 */
.property-hover{
    position: relative;
    overflow: hidden;
}

.property-hover img{
    display: block;
    width: 100%;
    transition: transform 0.6s ease;
}

.property-hover::after{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    filter: blur(10px);
    transition: all 0.7s ease;
}

.property-hover:hover img{
        transform: translateX(50%) scaleX(2)!important;
}

.property-hover:hover::after{
    left: 120%;
}