.banners.container {
    padding: 0;
  }
  
.banners__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  @media (max-width: 1200px) {
    .banners__image {
      max-width: 100%;
      height: auto;
      border-style: none;
    }
  }
  .banners__btn {
    position: absolute;
    top: 20px;
    height: 100%;
    width: 100px;
    cursor: pointer;
  }
  
  .banners__btn::after {
    content: "";
    position: absolute;
    z-index: 100;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 15px;
    width: 35px;
    height: 48px;
    opacity: 0.8;
    -webkit-filter: brightness(90%) drop-shadow(1px -1px 4px #8c8c8c) blur(0.5px);
            filter: brightness(90%) drop-shadow(1px -1px 4px #8c8c8c) blur(0.5px);
    -webkit-font-smoothing: antialiased;
  }
  
  .banners__btn--left::after {
    background-image: url("../../img/banners/banners-arrow.png");
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateY(-50%) rotate(-180deg);
        -ms-transform: translateY(-50%) rotate(-180deg);
            transform: translateY(-50%) rotate(-180deg);
  }
  
  .banners__btn--right::after {
    right: 15px;
    left: auto;
    background-image: url("../../img/banners/banners-arrow.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .category-products {
    padding-top: 43px;
  }
  
  .category-products__title {
    margin: 0;
    margin-bottom: 29px;
  }
  
  .category-products__link {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  @media (max-width: 768px) {
    .category-products__link {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      padding: 0 12px 0 12px;
      background: #f5f5f5;
      border-radius: 99px;
      height: 56px;
      width: 100%;
    }
  }
  .category-products__image-wrapper {
    background: #f5f5f5;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 144px;
    height: 144px;
  }
  
  @media (max-width: 768px) {
    .category-products__image-wrapper {
      width: auto;
      height: auto;
      background: transparent;
      margin-right: 6px;
    }
  }
  @media (max-width: 768px) {
    .category-products__image {
      max-width: 100%;
      height: auto;
      width: 40px;
    }
  }
  .category-products__slide-title {
    margin: 0;
    color: #333;
    font-size: 16px;
    margin-top: 4px;
    font-weight: 700;
    display: block;
  }
  
  @media (max-width: 768px) {
    .category-products__slide-title {
      font-size: 14px;
      line-height: 18px;
    }
  }
  .category__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr;
    grid-template-columns: repeat(24, 1fr);
    row-gap: 18px;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
  
  .category__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-grid-column-span: 3;
    grid-column: 3 span;
    text-align: center;
  }
  
  @media (max-width: 1280px) {
    .category__item {
      -ms-grid-column-span: 4;
      grid-column: 4 span;
    }
  }
  @media (max-width: 1024px) {
    .category__item {
      -ms-grid-column-span: 6;
      grid-column: 6 span;
    }
  }
  @media (max-width: 768px) {
    .category__item {
      -ms-grid-column-span: 12;
      grid-column: 12 span;
    }
  }

