@font-face {
  font-family: candara;
  src: url(../fonts/Candara.ttf);
}
@font-face {
  font-family: candaraBold;
  src: url(../fonts/Candara_Bold.ttf);
}
@font-face {
  font-family: calibri;
  src: url(../fonts/Calibri.ttf);
}
.affiches {
  display: flex;
  width: 90%;
  gap: 10px;
  justify-content: center;
  margin: auto;
  flex-wrap: wrap;
}
.affiches .affiche {
  display: block;
  width: 15%;
}
.affiches .affiche img {
  width: 100%;
}

.mainTitle, .title, p, h2, h4, .al-ce {
  width: 100%;
  text-align: center;
}

.bigPictures::-webkit-scrollbar {
  display: none;
}
.bigPictures.no-transition {
  scroll-behavior: auto;
}
.bigPictures {
  display: grid;
  grid-auto-flow: column;
  overflow-x: scroll;
  margin-left: auto;
  margin-right: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.bigPictures .imageEvent {
  display: block;
  scroll-snap-align: start;
}
.bigPictures .imageEvent .image {
  display: block;
  margin: auto;
  height: 100%;
  max-height: 1440px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.mainGalerie {
  position: relative;
  background-color: #172869;
  clip-path: polygon(0 0, 100% min(10cqw, 150px), 100% 100%, 0 calc(100% - min(10cqw, 150px)));
  padding-top: calc(min(10cqw, 150px) - 10px);
  padding-bottom: 150px;
}
.mainGalerie .prevBtn, .mainGalerie .nextBtn {
  width: 50px;
  height: 50px;
  /* background-color: red; */
  position: absolute;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.25s;
}
.mainGalerie .prevBtn:hover, .mainGalerie .nextBtn:hover {
  width: 60px;
  height: 60px;
  transition: 0.5s;
}
.mainGalerie .prevBtn {
  top: 50%;
  left: 20%;
  transform: translateX(-50%);
  background-image: url("../images/logos/prev.svg");
}
.mainGalerie .nextBtn {
  top: 50%;
  right: 20%;
  transform: translateX(50%);
  background-image: url("../images/logos/next.svg");
}

@media screen and (min-width: 801px) {
  .bigPictures {
    width: 768px;
  }
  .bigPictures .imageEvent {
    width: 768px;
    height: 576px;
  }
  .thumbnails {
    display: flex;
  }
  .nextBtn, .prevBtn {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .bigPictures {
    width: min(384px, 90vw);
  }
  .bigPictures .imageEvent {
    width: min(384px, 90vw);
    height: min(288px, 67.5vw);
  }
  .bigPictures .imageEvent .img {
    width: 90vw;
  }
  .thumbnails {
    display: none;
  }
  .nextBtn, .prevBtn {
    display: none;
  }
}/*# sourceMappingURL=styleGalerie.css.map */