.cs-diaporama .mcBandeau {
  display: block;
  width: 100%;
  height: 100%;
}
.cs-diaporama .mcBandeau__blocTitle {
  height: 100%;
  max-width: 200rem;
  margin: 0 auto;
}
.cs-diaporama .mcBandeau__blocTitle .u-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-height: 100%;
  z-index: 2;
}
.cs-diaporama .mcBandeau__blocTitle p {
  color: white;
  font-size: 4rem;
}

.csBlocGalleryAfficher {
  --bloc_gallery_afficher_height_of_Image: 25rem;
  --bloc_gallery_afficher_background: #deb857;
  --bloc_gallery_afficher_title_color: #ffffff;
  --bloc_gallery_afficher_title_background: #131313;
  --bloc_gallery_afficher_desc_color: #ffffff;
  --bloc_gallery_afficher_desc_background: #131313;
  --bloc_gallery_afficher_pagination_color: #ffffff;
  --bloc_gallery_afficher_pagination_color_hover: #131313;
  --bloc_gallery_afficher_pagination_background_hover: #deb857;
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
  padding: 0;
  list-style: none;
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__item {
  position: relative;
  flex: 1 1 25%;
  margin: 0 1rem 2rem;
  background-color: var(--bloc_gallery_afficher_background);
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__item a {
  text-decoration: none;
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__item:hover .csBlocGalleryAfficher__title {
  opacity: 0;
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__item:hover .csBlocGalleryAfficher__desc {
  opacity: 1;
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__item:hover .csBlocGalleryAfficher__image img {
  transform: scale(1.2);
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__container {
  height: auto;
  overflow: hidden;
  transition: height 0.8s ease;
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__image {
  position: relative;
  width: 100%;
  min-width: 15rem;
  height: var(--bloc_gallery_afficher_height_of_Image);
  overflow: hidden;
}
@media only screen and (max-width: 800px) {
  .csBlocGalleryAfficher .csBlocGalleryAfficher__image {
    height: calc(var(--bloc_gallery_afficher_height_of_Image) / 1.5);
  }
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__image img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  object-fit: cover;
  object-position: center;
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__title {
  z-index: 1;
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  padding: 1rem 1.5rem;
  color: var(--bloc_gallery_afficher_title_color);
  font-size: 1.4rem;
  line-height: 1;
  transition: opacity 0.5s ease;
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__title::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: var(--bloc_gallery_afficher_title_background);
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__desc {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 1.5rem;
  color: var(--bloc_gallery_afficher_desc_color);
  font-size: 1.4rem;
  line-height: 1.3;
  opacity: 0;
  transition: opacity 0.5s ease;
}
@media only screen and (max-width: 1024px) {
  .csBlocGalleryAfficher .csBlocGalleryAfficher__desc {
    display: none;
  }
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__desc::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: var(--bloc_gallery_afficher_desc_background);
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__pagination {
  display: flex;
  justify-content: center;
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__pagination-list {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.3rem;
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__pagination-item {
  margin: 0 0.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
  color: var(--bloc_gallery_afficher_pagination_color);
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__pagination-item:not(.disabled):not(.points) {
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__pagination-item:not(.disabled):not(.points):hover {
  color: var(--bloc_gallery_afficher_pagination_color_hover);
  background: var(--bloc_gallery_afficher_pagination_background_hover);
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__pagination-item:not(.disabled):not(.points):hover a:not([class^=bouton_]) {
  color: var(--bloc_gallery_afficher_pagination_color_hover);
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__pagination-item.active {
  color: var(--bloc_gallery_afficher_pagination_color_hover);
  background: var(--bloc_gallery_afficher_pagination_background_hover);
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__pagination-item.active a:not([class^=bouton_]) {
  color: var(--bloc_gallery_afficher_pagination_color_hover);
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__pagination-item.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.csBlocGalleryAfficher .csBlocGalleryAfficher__pagination-item a:not([class^=bouton_]) {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--bloc_gallery_afficher_pagination_color);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

main .page .content {
  max-width: 100%;
}