.fiche_bien {
  width: 600px;
  min-height: 500px;
  border-radius: 5px;
  cursor: pointer;
}

.fiche_bien .image {
  width: 100%;
  height: 330px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 50px;
  border-radius: 5px 5px 0px 0px;
  position: relative;
  overflow: hidden;
}

.fiche_bien .image::after {
  background: linear-gradient(to top, black 0%, #0000006e 30%, transparent);
  content: '';
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  position: absolute;
}

.fiche_bien .image .mini_detail {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  height: 40px;
  align-items: center;
  z-index: 1;
}

.fiche_bien .image .mini_detail .others {
  display: flex;
  margin: 10px;
  flex-wrap: wrap-reverse;
  justify-content: flex-end;
}

.fiche_bien .image .mini_detail .others>div {
  display: flex;
  margin-bottom: 10px;
}

.fiche_bien .image .mini_detail .surface {
  min-width: 70px;
}

.fiche_bien .image .mini_detail .pieces {
  min-width: 70px;
}

.fiche_bien .image .mini_detail .chambres {
  min-width: 90px;
}

.fiche_bien .image .mini_detail .price {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  background-color: #434343;
  min-width: 100px;
  border-top-right-radius: 5px;
}

.fiche_bien .image .mini_detail .price p {
  font-family: var(--police-Avenir-Black);
  font-size: 17px;
}



.fiche_bien .details {
  padding: 30px 20px;
  min-height: 200px;
  background-color: white;
  border-radius: 0px 0px 5px 5px;
}

.fiche_bien .details p {
  color: black;
}

.fiche_bien .details .haut {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.fiche_bien .details .haut p:nth-child(1) {
  font-family: var(--police-Avenir-Black);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fiche_bien .details .haut p:nth-child(2) {
  color: #B7B7B7;
  font-family: var(--police-Avenir-Book);
  font-style: oblique;
  font-size: 15px;
  max-width: 80%;
  margin-bottom: 10px;
}

.fiche_bien .details .description p {
  font-family: var(--police-Avenir-Light);
  font-size: 14px;
  opacity: 0.8;
}

.fiche_bien .details .description p a {
  color: black;
  font-family: var(--police-Avenir-Black);
  text-decoration: underline;
  font-size: 15px;
}


.fiche_bien .image .mini_detail .others>div {
  align-items: center;
  margin-right: 20px;
  justify-content: center;
}

.fiche_bien .image .mini_detail .price p {
  opacity: 0.9;
}


.fiche_bien .image .mini_detail .others>div p {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1;
  height: 15px;
  display: flex;
  align-items: center;
}

.fiche_bien .image .mini_detail .others>div img {
  margin-right: 7px;
  height: 12px;
}



.fiche_bien .image .exclusivite {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 105px;
  width: 105px;
  top: -10px;
  left: -10px;
}

.fiche_bien .image .exclusivite p:nth-child(1) {
  font-family: var(--police-Avenir-Black);
  font-size: 10px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3px;
  line-height: 1.2;
  margin-top: -10px;
}

.fiche_bien .image .exclusivite p:nth-child(2) {
  font-family: var(--police-Cormorant-Light);
  text-transform: uppercase;
  font-size: 10px;
}

.fiche_bien .image .exclusivite p:nth-child(2) span {
  font-family: var(--police-Avenir-Black);
  font-size: 9px;
}

.fiche_bien .image .nouveaute {
  background-color: #013c6a;
  z-index: 1;
  position: absolute;
  transform: rotate(-19deg);
  padding: 8px 120px 8px 30px;
  top: 3px;
  left: -14px;
}

.fiche_bien .image .nouveaute p {
  font-family: var(--police-Avenir-Black);
  color: var(--couleur-12);
  font-size: 16px;
}



/************* MEDIA **********/
@media screen and (max-width: 2700px) {
  .fiche_bien {
    width: calc(33% - 25px);
    margin: 50px 0 0;
  }
}

@media screen and (max-width: 1800px) {
  .fiche_bien {
    width: calc(50% - 25px);
  }
}

@media screen and (max-width: 768px) {
  .fiche_bien {
    width: 100%;
    max-width: 500px;
    margin: 50px auto 0;
  }

  .fiche_bien .details {
    min-height: auto;
  }

  .fiche_bien .image {
    height: 250px;
  }
}


@media screen and (max-width: 400px) {
  .fiche_bien .image .mini_detail .price {
    width: 100%;
    border-radius: 0px;
  }

  .fiche_bien .image .mini_detail {
    flex-wrap: wrap-reverse;
  }
}