.section-6{
    background: #211f54;
    color: white;
    padding: 0 10%;
}

.section-6 .section-6-heading{
    text-align: center;
    max-width: 70%;
    margin: auto;
    padding: 5rem 0;
}

.section-6 .section-6-heading span{
    background: white;
    color: #211f54;
    padding: 1rem 2rem;
    font-size: 1.25rem;
}

.section-6 .section-6-heading h2{
    padding-top: 3.5rem;
    font-weight: 400;
    font-size: 2.5rem;
}





@media screen and (max-width: 1000px) {
    .section-6 .section-6-heading{
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .section-6 .section-6-heading h2{
        font-size: 1.5rem;
    }

    .section-6 .section-6-heading span{
        padding: .5rem 1rem;
        font-size: 1rem;
    }
}

.wrapper {
    max-width: 1600px;
    width: 100%;
    position: relative;
    margin: auto;
  }
  
  .wrapper i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.23rem;
    height: 50px;
    width: 50px;
    background: #8b53ff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    border-radius: 50%;
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    transition: 0.3s ease;
  }
  
  .wrapper i:first-child {
    left: -22px;
  }
  
  .wrapper i:last-child {
    right: -22px;
  }
  
  .wrapper i:active {
    transform: translateY(-50%) scale(0.85);
  }
  
  .wrapper .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    gap: 16px;
    border-radius: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
  }
  
  .wrapper .carousel.no-transition {
    scroll-behavior: auto;
  }
  
  .wrapper .carousel::-webkit-scrollbar {
    display: none;
  }
  
  .wrapper .carousel.dragging {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
  
  .wrapper .carousel .card {
    scroll-snap-align: start;
    height: 500px;
    background: #fff;
    border-radius: 8px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .wrapper .carousel.dragging .card {
    user-select: none;
    cursor: grab;
  }
  
  .wrapper .carousel .card .img {
    height: 148px;
    width: 148px;
    background: #8b53ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .wrapper .carousel .card .img img {
    height: 140px;
    width: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
  }
  
  .wrapper .carousel .card h2 {
    font-size: 1.52rem;
    font-weight: 500;
    margin: 30px 0 5px;
  }
  
  .wrapper .carousel .card span {
    color: #6a6d78;
    font-size: 1.31rem;
  }
  
  #card-1, #card-7{
      background-image: url(../img/08-modulo-carrusel-business/card-bodegas.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      background-color: #211f54;
  }
  
  #card-2, #card-8{
      background-image: url(../img/08-modulo-carrusel-business/card-comestibles.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      background-color: #211f54;
  }
  
  #card-3, #card-9{
      background-image: url(../img/08-modulo-carrusel-business/card-comercio-electronico.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      background-color: #211f54;
  }
  
  #card-4, #card-10{
      background-image: url(../img/08-modulo-carrusel-business/card-juguetes.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      background-color: #211f54;
  }
  
  #card-5, #card-11{
      background-image: url(../img/08-modulo-carrusel-business/card-moda.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      background-color: #211f54;
  }
  
  #card-6, #card-12{
      background-image: url(../img/08-modulo-carrusel-business/card-retail.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      background-color: #211f54;
  }

  #card-7, #card-13{
      background-image: url(../img/08-modulo-carrusel-business/card-minorista.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      background-color: #211f54;
  }
  
  @media (max-width: 1000px) {
    .wrapper .carousel {
      grid-auto-columns: calc((100% / 2) - 9px);
    }
  }
  
  @media (max-width: 600px) {
    .wrapper .carousel {
      grid-auto-columns: 100%;
    }
  
    .wrapper .carousel .card{
      height: 400px;
    }
  }






  