

.carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  
  .carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(var(--rows), 1fr);
    transition: transform 0.3s ease;
    user-select: none;
    cursor: grab;
  }
  .carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
  
  .carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    height: 80px;
    width: 70%;
    padding: 8px;
  }
  
  .carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .carousel-btn {
    border: none;
    color: #fff;
    display: none;
    cursor: pointer;
    margin: 0 !important;
    font-size: 1.2rem;
    background-color: transparent;
  }
  
  .carousel-btn svg{
    max-width: 40px;
  }
  
  @media (min-width: 768px){
    .carousel-btn{
      display: block;
    }
  }

  @media screen and (min-width: 1000px) {
    .carousel-item {
      height: 111px;
    }

    .carousel-item img{
        width: 90%;
    }
  }

  @media screen and (max-width: 999px) {
    .carousel-item{
      margin: 10px 0;
      padding: 0;
    }
    .carousel-item img{
        width: 90%;
    }
  }

  
  
  
  