/* Brand index carousel */
.brand-carousel-container {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  padding: 20px 0;
}
.brand-carousel {
  display: flex;
  width: max-content;
  animation: scroll 15s linear infinite;
}
.brand-carousel-item {
  flex: none;
  margin: 0 25px;
  padding: 0 16px;
  color: white;
  font-family: roboto, sans-serif;
  line-height: 56px;
  letter-spacing: 1px;
  text-transform: uppercase;
  object-fit: contain;
  border-radius:4px;

}
.brand-carousel .brand-carousel-item:hover {
  transform: scale(1.1);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Brand index carousel */

/* Proyect index carousel */
.cards-wrapper {
  display: flex;
  justify-content: center;
}
.card img {
  max-width: 100%;
  max-height: 100%;
}
.cardi{
  margin: 0 0.5em;
}
.card {
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: none;
  border-radius: 0;
}
.carousel-inner {
  padding: 1em;
}
.carousel-control-prev,
.carousel-control-next {
  background-color: #e1e1e1;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
/* Proyect index carousel */