
/* apparences */
.galerie.bg-purple{
    background-color: #8310AE;
    margin-top: -6rem;
    margin-bottom: -6rem;
    padding-top: 6rem;
    padding-bottom: 12rem;
}

.galerie.bg-white{
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.galerie.bg-white h2, 
.galerie.bg-white h6,
.galerie.bg-white .zoneText{
    color: #710097;
}

.galerie .galGrid.coverImgYes img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.galerie .galGrid.coverImgNo img{
    width: 100%;
    object-fit: contain;
    background-color: #fff;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow:hidden;
  background-color: rgba(0, 0, 0, 0.8);
}
.lightbox-image {
  display: block;
  margin: auto;
  max-width: 100%;
 max-height: 100%;
}
.close {
  color: #fff;
  font-size: 3em;
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
}
.gallery-image:hover{
    cursor: pointer;
}

/* mobile */
@media (max-width: 769px) {
    .galerie.bg-purple{
        margin-top: -2.5rem;
        margin-bottom: -2.5rem;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .galerie img{
        display: inline-block;
        text-align: center;
    }
}