.portfolio-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}
.filter-btn {
    padding: 10px 20px;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    color: #444;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    border: 1px solid #000;
    font-family: "Belleza", Sans-serif;
    font-weight: 400;
    font-size: 18px;
}
.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.portfolio-item {
    width: 23.6%;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.square-image {
  aspect-ratio: 1 / 0.72;
  width: 100%;
  object-fit: cover;
  display: block;
  border: 1px solid #000 !important;
}
#cat-completed-projects .square-image{
	filter: brightness(1.2);
	-webkit-filter: brightness(1.2);
}
.portfolio-item h3 {
    font-family: "Belleza", Sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin: 0 0 5px;
}
.portfolio-item p {
    margin: 0;
    font-family: "Lato", Sans-serif;
	font-size:14px
}
.property_meta_info {
    margin-bottom: 10px;
}
.portfolio-grid.fourbox .portfolio-item {
    width: 23.685%;
}
.swiper-pagination-bullet-active {
    background: #000 !important;
}
.portfolio-filters.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background-color: #fff;
    padding: 15px 0;
    margin: 0;
    box-shadow: 0px 10px 15px #ebebeb;
}
.portfolio-categories {
    scroll-margin-top: 90px;
    border-bottom: 1px solid #000;
    margin-bottom: 30px;
    padding: 0 0 25px;
}
.portfolio-categories:last-of-type{
	border-bottom:0;
}
.portfolio-categories h2 {
    font-family: "Belleza", Sans-serif;
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 20px;
    color: #000;
}
div#cat-reconstruction {
    border-bottom: 0;
    padding: 0;
    margin-bottom: 0;
}
.swiper-button-next:after, .swiper-button-prev:after{
	font-size:20px !important;
	font-weight:700 !important;
	color:white !important;
}

#cat-completed-projects .completed-thumb{
	position:relative;
}
#cat-completed-projects .completed-thumb .view-more-btn {
    position: absolute;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -56%);
    color: white;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
	z-index:2;
}
#cat-completed-projects .completed-thumb:hover .view-more-btn{
	opacity:1;
	visibility:visible;
	transform:translate(-50%, -50%);
}
#cat-completed-projects .completed-thumb::before{
	content: "";
	position:absolute;
	left:0;
	background:#20202040;
	height:100%;
	width:100%;
	opacity:0;
	visibility:hidden;
	transition:0.3s;
	z-index:1;
}
#cat-completed-projects .completed-thumb:hover::before{
	opacity:1;
	visibility:visible;
}

@media(max-width:767px){
	.portfolio-filters{
		flex-direction:column;
	}
	.portfolio-categories{
		margin-bottom:20px;
	}
	.portfolio-item{
		width: 47.1%;
		margin-bottom:10px;
	}
	#cat-completed-projects .completed-thumb::before{
		visibility:visible;
		opacity:1;
	}
	#cat-completed-projects .completed-thumb .view-more-btn{
		opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%);
	}
	.portfolio-categories h2{
		font-size:25px;
	}
	.portfolio-item h3{
		font-size:17px;
	}
	.portfolio-item p {
	font-size:13px
    }
}
@media(min-width:768px) and (max-width:1100px){
	.portfolio-item {
      width: 31.5%;
      box-sizing: border-box;
      margin-bottom: 20px;
    }
	#cat-completed-projects .completed-thumb::before{
		visibility:visible;
		opacity:1;
	}
	#cat-completed-projects .completed-thumb .view-more-btn{
		opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%);
	}
}
