#filter-bar{
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 20px;
}
#filter-bar a{
	background: #fff;
	box-shadow: 0 0 5px #0003;
	border-radius: 10px;
	cursor: pointer;
	color: inherit;
	display: flex;
	font-weight: 800;
	margin: 10px;
	padding: 5px 15px;
	text-decoration: none;
	transition: .5s;
}
#filter-bar a:hover{
	color: var(--primary);
}
#filter-bar a .ico{
	display: inline-block;
	margin-right: 15px;
	transition: .5s;
}
#filter-bar a:hover .ico{
	color: var(--nouveau);
}

#bloc-biens{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#bloc-biens .box{
	padding: 0 10px;
	margin: 10px 0;
	max-width: calc(100% / 4);
	width: 100%;
}

#bloc-biens .box a{
	align-items: flex-end;
	border-radius: 10px;
	color: #fff;
	display: flex;
	justify-content: center;
	position: relative;
	height: 400px;
	overflow: hidden;
	text-decoration: none;
	width: 100%;
}

#bloc-biens .box a .img{
	filter: brightness(90%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .3s;
	z-index: 1;
}

#bloc-biens .box a .img img{
	width: 100%;
	height: 100%;
	transition: .3s;
	object-fit: cover;
}

#bloc-biens .box a .pastille{
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	top: 5px;
	left: 5px;
}

#bloc-biens .box a .pastille span{
	border-radius: 30px;
	color: #fff;
	display: table;
	padding: 2px 20px;
	margin: 5px;
	z-index: 2;
}

#bloc-biens .box a .txt{
	padding: 0 20px;
	position: relative;
	margin-bottom: 20px;	
	width: 100%;
	z-index: 2;
}

#bloc-biens .box a .txt .ico{
	display: block;
	margin-bottom: 10px;
}

#bloc-biens .box a .txt h2{
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
	transition: .3s;
}

#bloc-biens .box a .txt p{
	text-transform: uppercase;
	transition: .3s;
}

#bloc-biens .box a .txt p.ville{
	font-size: 15px;
	margin-bottom: 20px;
}

#bloc-biens .box a .txt p.prix{
	font-weight: 700;
	font-size: 19px;
	margin-bottom: 0;
}

#bloc-biens .box a:hover .img{
	filter: brightness(40%);
}

#bloc-biens .box a:hover .img img{
	transform: scale(1.1);
}

#bloc-biens .box a:hover .txt .prix{
	opacity: 0;
	margin-bottom: 60px;
}

@media(max-width: 1200px){
	#bloc-biens .box{
		max-width: calc(100% / 3);
	}
}

@media(max-width: 991px){
	#bloc-biens .box{
		max-width: calc(100% / 2);
	}
}

@media(max-width: 768px){
	#bloc-biens .box{
		max-width: 100%;
	}
}