.webs-destacadas-slider > .webs-destacadas-slider-inner {
  transition-timing-function: linear;
}
.logos-list-after {
  z-index: 3;
  background-image: linear-gradient(270deg, var(--bg-color), #fff0);
  width: 160px;
  position: absolute;
  inset: 0% 0% 0% auto;
}
.logos-list-before {
  z-index: 2;
  background-image: linear-gradient(90deg, var(--bg-color), #fff0);
  width: 160px;
  position: absolute;
  inset: 0% auto 0% 0%;
}
.webs-destacadas-slider-logo {
  width: 190px;
  height: 56px;
  padding: 0 15px;
}

.webs-destacadas-slider-logo img {
  filter: grayscale(1);
  object-fit: contain;
  width: 160px;
  height: 56px;
}
.webs-destacadas-slider-wrapper {
  z-index: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.webs-destacadas-slider-inner {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  width: 100%;

}
.webs-destacadas-slider {
  -webkit-animation: marquee 45s linear infinite;
  animation: marquee 45s linear infinite;
  flex: none;
  display: flex;
  flex-direction: row;
}

@-webkit-keyframes marquee {
  from {
    transform: translateX(0) translateZ(0);
  }

  to {
    transform: translateX(-100%) translateZ(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0) translateZ(0);
  }

  to {
    transform: translateX(-100%) translateZ(0);
  }
}

