

.carousel-container {
    width: 100%;
    overflow: hidden;
    margin: 0 0 100px 0;
    /* background-color: white; */
    /* padding: 20px 0; */
}

.carousel-container p {
  color: #D04200;
}

.carousel {
  margin-top: 24px;
  display: flex;
  width: max-content;
  animation: scroll 550s linear infinite;
}

.logo-item {
    width: 150px;
    /* width: auto; */
    margin: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
