.category__slider {
  width: 100%;
  display: flex;
}

.category__slide {
  width: calc(100% / 3);
  aspect-ratio: 0.7496 / 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.category__slide:nth-child(1) {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000 100%),
    url("/user/documents/upload/caterogy-slider/category-1.png");
}
.category__slide:nth-child(2) {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000 100%),
    url("/user/documents/upload/caterogy-slider/category-2.png");
}
.category__slide:nth-child(3) {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000 100%),
    url("/user/documents/upload/caterogy-slider/category-3.png");
}

.category__slider .category__link {
  width: 100%;
  height: 100%;
  padding: 3.2rem 6.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}

.category__descr {
  margin: 0;
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 400;
}
.category__title {
  margin: 0;
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .category__slider .category__link {
    padding: 2.2rem 4.2rem;
  }
  .category__descr {
    font-size: 14px;
  }
  .category__title {
    font-size: 20px;
  }
}
@media (max-width: 550px) {
  .category__slider {
    overflow-x: scroll;
    flex-wrap: nowrap;
  }
  .category__slide {
    width: 65%;
    flex: 0 0 65%;
    aspect-ratio: 0.7496 / 1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
