#eventails {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  padding: 0 0 300px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #eventails {
    padding: 0 0 150px;
  }
}
#eventails div.carte {
  opacity: 0;
  translate: 0 20px;
}
#eventails div.carte.active {
  transition: 0.5s ease-in-out;
  opacity: 1;
  translate: 0;
}
#eventails div.carte div.img-sizer {
  position: relative;
  padding-bottom: 122%;
  border-radius: 5px;
  overflow: hidden;
}
#eventails div.carte div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
