.carousel-container 
{
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel 
{
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.item
{
    text-align: center;
    margin: 0 15px;
    padding: 15px;
    width: 20% !important;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.item > div {
    
   /* height: 300px;*/
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.item img 
{
  width: 100%;
  height: auto;
 
}

#partenaires .item img {
    width: auto !important;
   max-height: 100px;
}

.prev, .next 
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 10px;
  font-size: 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  border-radius: 5px;
}

.prev {
  left: 0px;
}

.next {
  right: 0px;
}


#CarouselProduct .item
{
  margin: 0 5px;
  padding: 0;
}

#CarouselProduct
{
  padding: 0 25px;
}

@media(max-width: 900px)
{
  .item
  {
    padding: 0;
    width: 40% !important;
  }
}