.ab-project-location{
	display:none;
}



.ab-projects-grid{
    display:grid;
    gap:40px;
}

.ab-desktop-3{
    grid-template-columns:repeat(3,1fr);
}

.ab-desktop-4{
    grid-template-columns:repeat(4,1fr);
}

.ab-project-card{
    display:block;
    text-decoration:none;
    color:inherit;
}

.ab-project-image{
    position:relative;
    overflow:hidden;
    border-radius:0;
}

.ab-project-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

.ab-project-card:hover .ab-project-image img{
    transform:scale(1.03);
}

.ab-project-content{
    padding-top:20px;
}

.ab-project-title{
    font-size:22px;
    line-height:1.3;
    margin:0 0 8px;
}

.ab-project-location{
    color:#1991c1;
    font-size:20px;
	text-align:center;
	text-transform:uppercase;
	font-weight:600;
}

/* TABLET */
@media(max-width:1024px){

    .ab-tablet-2{
        grid-template-columns:repeat(2,1fr);
    }

    .ab-tablet-1{
        grid-template-columns:1fr;
    }

}

/* MOBILE */
@media(max-width:767px){
	
	.ab-project-location{
    color:#1991c1;
    font-size:16px;
	text-align:center;
	text-transform:uppercase;
	font-weight:600;
}

    .ab-mobile-2{
        grid-template-columns:repeat(2,1fr);
    }

    .ab-mobile-1{
        grid-template-columns:1fr;
    }

    .ab-project-image img{
        height:350px;
    }

}


/* =====================================
FILTERS
===================================== */

.ab-project-filters-desktop{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    margin:0 0 60px;

}

.ab-project-filter{
    border:1px solid #16305f;
    background:#fff;
    color:#16305f;
    padding:12px 28px;
    cursor:pointer;
    transition:.3s;
    border-radius:100px;
    font-weight:600;

}

.ab-project-filter:hover{
    background:#16305f;
    color:#fff;

}

.ab-project-filter.active{
    background:#16305f;
    color:#fff;

}
.ab-project-card{
    opacity:1;
    transform:scale(1);

    transition:
        opacity .35s ease,
        transform .35s ease;

}

.ab-project-card.hidden{
    opacity:0;
    transform:scale(.96);
    pointer-events:none;
    position:absolute;
    visibility:hidden;
}

.ab-project-filter-select{
    display:none;
    width:100%;
    padding:14px 18px;
    border:1px solid #16305f;
    border-radius:40px;
    background:#fff;
    font-size:16px;
    color:#16305f;

}

@media (max-width:767px){

    .ab-project-filters-desktop{
        display:none;
    }

    .ab-project-filter-select{
        display:block;
    }
}