


/* ################################################################## */

/* box-shadow: [horizontal offset] [vertical offset] [blur radius] [optional spread radius] [color]; */
.cartel {
  display: flex; 
  /* flex-direction: row; */
  flex: 0 0 100%;
  padding: 20px 0;
  max-width: auto;
  overflow: hidden;

  /* justify-content: center;   <-- No usar justify-content porque corta secuencia de carrusel */
  align-items: center;
  /* line-height: 150px;  */
  height: 150px;
  margin: 0 auto;
  /* background-color: var(--background7); */

  &:hover .cartel-group {
    animation-play-state: paused;
  }
}

  .texto-provisorio {
      color: #b7c3cf;
      text-shadow: 0 1px white;
  }


.cartel-group {
  display: flex; 
  flex-direction: row; 
  justify-content: center; 
  align-items: center;

  will-change: transform;
  animation: scrolling 120s linear infinite;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}



.cartel-box {
  padding: 0px 15px;
}

#cartel-1-img,
#cartel-2-img,
#cartel-3-img,
#cartel-4-img,
#cartel-5-img,
#cartel-6-img,
#cartel-7-img,
#cartel-8-img,
#cartel-9-img,
/* #cartel-10-img, */
#cartel-11-img,
#cartel-12-img,
#cartel-13-img,
#cartel-14-img,
#cartel-15-img {
  /* transform: rotate(15deg); */
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
}

