.latest-projects{
    padding:100px 20px;
    background:#fff;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.project-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.project-card:hover{
    transform:translateY(-8px);
}

.project-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.project-content{
    padding:25px;
}

.project-location{
    color:#D4AF37;
    font-weight:700;
}

.project-content h3{
    margin:15px 0;
    color:#102A43;
}

.project-price{
    color:#D4AF37;
    font-size:28px;
    font-weight:700;
    margin:15px 0;
}

.project-content a{
    display:inline-block;
    margin-top:15px;
    color:#102A43;
    font-weight:700;
}

@media(max-width:991px){

.project-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.project-grid{
    grid-template-columns:1fr;
}

}