/* ==========================
   Property Image Slider
========================== */

.property-slider{

    width:90%;
    max-width:1400px;

    margin:130px auto 70px;

}

.main-image{

    width:100%;
    height:650px;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.main-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:.4s;

}

.thumbnail-row{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-top:25px;

    flex-wrap:wrap;

}

.thumb{

    width:150px;

    height:95px;

    object-fit:cover;

    border-radius:15px;

    cursor:pointer;

    transition:.3s;

    border:3px solid transparent;

}

.thumb:hover{

    transform:translateY(-6px);

    border-color:#D4AF37;

}