.touring-acts {
  padding: 3em 0;  
}

.touring-acts .header{
  padding: 12em 0 0.09em 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/images/touring-acts.jpg) center / cover no-repeat;
}

.touring-acts h1 {
  font-size: 3em;
  text-transform: uppercase;
}

.touring-acts .social-icons {
  display: flex;
  gap: .5em;
  font-size: 1.4em;
}

.carrusel {
  overflow: hidden;
  width: 100%;
  
}

.image-touring-reel {
  display: flex;
  width: max-content;
  gap: .5em;
  animation: scroll 60s linear infinite;
}

.image-touring-reel img {
  width: 350px;
  height: auto;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



@media (min-width: 992px) {
  .image-touring-reel img {
    width: 700px;
  }
}