.section-13 {
  padding: 100px 0;
  background-color: var(--color-black);
  overflow: hidden;
}

.section-13.solomono-bg::before {
  height: 100%;
}

#solution .section-13 h2 {
  text-align: center;
  margin-bottom: 80px;
}

.section-13 .carousel-projects {
  display: flex;
  gap: 20px;

  animation: scroll-x 50s infinite linear;
}

.section-13 .carousel-projects .item {
  display: flex;
  align-items: center;
  max-width: 220px;
  max-height: 70px;
  min-width: 220px;
  background-color: #fff;
}


.section-13 .carousel-projects .item img {
  padding: 35px;
}

@keyframes scroll-x {
  0% {
    transform: translateX(0);
 }
  100% {
    transform: translateX(-4024px); 
 }
}

@media (max-width: 991px) {
  .section-13 {
    padding: 40px 0;
  }

  #solution .section-13 h2 {
    margin-bottom: 35px;
  }

  /* .section-13 .carousel-projects .item {
    max-height: 36px;
  }

  .section-13 .carousel-projects .item img {
    padding: 0;
    height: 30px;
  } */
}