  .section-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .container {
    width: 100%;
    max-width: 1880px;
  }

  .section-collection-categories {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 65px;
  }

  .items-collection-categories {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .item-collection-category {
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 230px;
    max-width: 230px;
    height: 105px;
    border-radius: 50px;
    padding: 5px 10px;
    gap: 13px;
    position: relative;
  }

  .item-collection-category img {
    width: 45%;
    height: auto;
  }

  .item-collection-category h4 {
    width: 55%;
    text-align: start;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
  }

  .stripes {
    width: 45%;
    height: 80%;
    position: absolute;
    left: 0;
    z-index: -1;
    border-radius: 50px 0 0 50px;
    background-size: 100% 15px;
    opacity: 0.3;
  }

  .button-next::after {
    content: "";
  }

  .button-prev::after {
    content: "";
  }

  .button-next {
    width: 48px;
    height: 48px;
  }

  .button-prev {
    width: 48px;
    height: 48px;
  }

  @media(max-width: 840px) {

    .section-collection-categories {
      padding: 20px 10px;
    }

    .button-next {
      display: none;
    }
    .button-prev {
      display: none;
    }

  }