/* FILTRES */
#groupe-btn-filtre-galerie {
  text-align: center;
  margin-bottom: 50px;
}
#groupe-btn-filtre-galerie div {
  display: inline-block;
}
#groupe-btn-filtre-galerie div:not(:first-of-type) {
  margin-left: 10px;
}
#groupe-btn-filtre-galerie input {
  display: none;
}
#groupe-btn-filtre-galerie label {
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #e3e3e3;
  color: #866A99;
  font-size: 16px;
  cursor: pointer;
  transition: .3s ease;
}
#groupe-btn-filtre-galerie input[type="radio"]:checked + label {
  background: #866A99;
  color: white;
  border-color: #866A99;
}

/* GALERIE */
#grille-galerie {
	width: 80%;
  margin: 0 auto;
}
.gal_img-wrp {
  float: left;
  overflow: hidden;
  width: calc(calc(100% / 5) - 10px );
  margin: 5px;
  height: 200px;
}
@media screen and (max-width:768px) {
  .gal_img-wrp {
    width: calc(calc(100% / 2) - 10px );
  }
}
.gal_img-wrp img,
.gal_img-wrp picture {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.gal_img-wrp img:hover {
  opacity: 0.75;
}
.gal_img-wrp a {
  /* display: grid; */
}
