#photos{
    display: flex;
    justify-content: center;
    background-color: #000;
    box-shadow: 2px 8px 20px 10px black;
}
.container-landing{
  background-color: #000;
}
section .container-landing{
  background-color: #fff;
}
#slider{
    width:100%;
    box-shadow: 2px 4px 6px black;
    height: 800px;
    object-fit: cover;
    object-position: center;
}
/* class ajouter en js sur le slider afin de mettre un effet de fondu en transition */
.slider-js{
    animation: slider 5s running infinite;
    transition: 1s;
  }
  
  @keyframes slider {
    0%{
      /* top:20%; */
      opacity: 0;
    }
    1%{
      /* top:20%; */
      opacity: 0;
    }
    99%{
      /* top:20%; */
      opacity: 1;
    }
  }

.span_italique{
font-style: italic;
}
.piece{
    text-align: center;
}
.piece img{
    width: 50%;
    margin: 2% 0 2% 0;
}

.piece h1{
    font-size: 67px;
    color: #b49761;
    padding-top: 135px;
    font-family: sans-serif;
    font-style: italic;
}

.piece h4{
    font-size: 30px;
    color : #333D5B;
    margin-bottom: 1%;
}

.piece h4 .bold{
    font-style: bold;
    color : #b49761;
}


.piece .descriptif{
    width: 86%;
    margin: auto;
    line-height: 180%;
    text-align: center;
    color : #000;
    font-size: 20px;
    font-family: sans-serif;
}

.imageDeFond{
    z-index: 2;
 }

 .voirPlus{
    border: 0;
    background-color: #b49761;
    color: #fff;
    margin-bottom: 4px;
    padding: 12px;
    text-align: left;
}
.voirPlus a{
    color: #fff;
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
}

.presentation{
    opacity: 0;
    transform: translateY(-30px);
}
.presentation-visible{
    opacity: 1;
    transform: translateY(0);
    transition: 3s;
}



.scroll-down {
    height: 50px;
    width: 30px;
    border: 2px solid #000;
    position: fixed;
    left: 50%;
    bottom: 20px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 2;
  }
  .scroll-down::before,
  .scroll-down::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -100%) rotate(45deg);
    border: 1px solid #000;
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 2s ease-in-out infinite;
  }
  .scroll-down::before {
    top: 30%;
    animation-delay: 0.3s;
    /* animation: scroll-down 1s ease-in-out infinite; */
  }
  
  @keyframes scroll-down {
    0% {
      /* top:20%; */
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    60% {
      opacity: 1;
    }
    100% {
      top: 90%;
      opacity: 0;
    }
  }

/************************************ CARROUSEL *********************************/
  .carousel{
    width: 100%;
    display: flex;
    align-items: center;
    margin: auto;
}
.carousel .fas{
    text-shadow: 2px 4px 6px rgb(106, 105, 105);
    margin: 15px;
    font-size: 45px;
}
.carouselBox{
  width: 90%;
    height: 285px;
    overflow: hidden;
    white-space: nowrap;
    margin: 130px 10px;
    display: flex;
    align-items: center;
}
.img-carousel{
  min-width: 20%;
  display: flex;
  flex-direction: column;
  margin: 5px 30px;
  overflow: hidden;
  border: 2px solid #b49761;
  border-width: 0px 0px 2px 15px;
  height: 220px;
}
.img-carousel img{
    width: 100%;
    cursor: pointer;
    height: 183px;
    width: 314px;
    object-fit: cover;
}
.img-carousel img:hover{
  transform: scale(1.1);
  transition: 0.5s ease;
}
.img-carousel img:hover{
  filter: brightness(0.5);
}
.lien-carousel{
  width: 100%;
  
  padding: 10px 0;
  z-index: 1;
  background-color: #fff;
}
.lien-carousel a{
  text-decoration: none;
  z-index: 1;
  color: #b49761;
  font-size: 20px;
  padding: 0 10px;
  font-family: cursive;
  font-style: italic;
}


@media screen and (max-width: 860px){

    .piece h1{
    font-size: 40px;
  }
    .piece h2 {
        font-size: 40px;
        width: 100%;
    }

    .carouselBox{
      display: block;
      text-align: center;
      overflow: visible;
      height: auto;
      margin: 0;
    }

    .img-carousel{
      border: none;
      width: 96%;
    }

    .img-carousel img{
      width: 100%;
      object-fit: cover;
    }

    .img-carousel img:hover{
      transform: none;
      transition: 0.5s ease;
    }

    #left-carrousel, #right-carrousel{
      display: none;
    }

    .box-border{
      border: none;
    }

    .presentation {
      opacity: 1;
      transform: translateY(-30px);
    }

    #slider {
      height: auto;
    }

}