* {
  margin: 0;
  padding: 0;
}

.carrouselZone {
  padding-top: 50px;
  display: flex;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.carrouselZone .wideView {
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: space-between;
}
.carrouselZone .wideView .leftGradient {
  background: #ffffff;
  background: linear-gradient(90deg, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0) 100%);
}
.carrouselZone .wideView .rightGradient {
  background: #ffffff;
  background: linear-gradient(-90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 80%);
}
.carrouselZone .wideView .leftGradient,
.carrouselZone .wideView .rightGradient {
  width: 25%;
  z-index: 11;
}
.carrouselZone .imgZone {
  height: auto;
  display: grid;
  grid-auto-flow: column;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  gap: 16px;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carrouselZone .imgZone::-webkit-scrollbar {
  display: none;
}
.carrouselZone .imgZone.no-transition {
  scroll-behavior: auto;
}
.carrouselZone .imgZone .photo {
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
}
.carrouselZone .imgZone .photo img {
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}
.carrouselZone .imgZone .photo .zoneTexte {
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  font-size: large;
  position: absolute;
  display: flex;
  border-radius: 0 0 5px 5px;
  background-color: #c00e18;
  width: 100%;
  height: auto;
  flex-direction: column;
  align-items: center;
  bottom: 0;
  z-index: 10;
  color: #ffffff;
  text-align: center;
}
.carrouselZone .imgZone .photo .zoneTexte p {
  text-transform: uppercase;
  display: block;
}
.carrouselZone .imgZone .photo .zoneTexte a {
  display: block;
  text-decoration: none;
}
.carrouselZone .imgZone .photo .zoneTexte a:visited {
  color: #ffffff;
  text-decoration: none;
}
.carrouselZone .imgZone .photo .zoneTexte a:hover {
  font-weight: bold;
  cursor: pointer;
}

.partenaires {
  width: 100%;
}
.partenaires .desc {
  color: #db212c;
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  width: 80%;
  margin: auto;
  margin-top: 40px;
  text-align: center;
  font-size: x-large;
}
.partenaires .LastPartners {
  width: 90%;
  margin: 40px auto 20px auto;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 100px;
}
.partenaires .LastPartners li {
  list-style: none;
}
.partenaires .LastPartners li img {
  width: auto;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
}
.partenaires a {
  border-radius: 5px;
  display: block;
  margin: auto;
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  border: none;
  width: 300px;
  height: 70px;
  background-color: #db212c;
  color: white;
  text-decoration: none;
  text-align: center;
  line-height: 70px;
}
.partenaires a:visited {
  color: white;
  text-decoration: none;
}
.partenaires a:hover {
  background-color: #c00e18;
  font-weight: bolder;
}

.imgZone.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.imgZone.dragging .photo {
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media screen and (min-width: 901px) {
  .carrouselZone {
    width: 75vw;
  }
  .carrouselZone .imgZone {
    grid-auto-columns: calc(33.3333333333% - 12px);
  }
}
@media screen and (max-width: 900px) {
  .carrouselZone {
    width: 90vw;
  }
  .carrouselZone .imgZone {
    grid-auto-columns: calc(33.3333333333% - 12px);
  }
}
@media screen and (max-width: 600px) {
  .carrouselZone .imgZone {
    grid-auto-columns: 100%;
  }
  .wideView {
    display: none;
  }
}
@media screen and (min-width: 601px) {
  .wideView {
    display: flex;
  }
}
@media screen and (max-width: 1450px) {
  .zoneTexte p,
  .zoneTexte a {
    font-size: small;
  }
}/*# sourceMappingURL=styleIndexNew.css.map */