/*
$grid-breakpoints: (
  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
) !default;
*/
.categories-slider-wrapper .splide__arrow {
  background: transparent;
  border: none;
  box-shadow: none;
  width: 36px;
  height: 36px;
  top: 250px;
  transform: translateY(-50%);
}
.categories-slider-wrapper .splide__arrow svg {
  display: none;
}
.categories-slider-wrapper .splide__arrow--prev {
  background-image: url("../../img/arrow-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: -3em;
}
.categories-slider-wrapper .splide__arrow--next {
  background-image: url("../../img/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  right: -3em;
}
.categories-slider-wrapper .splide__arrow:hover {
  background-color: transparent;
  opacity: 0.7;
}
@media only screen and (max-width: 576px) {
  .categories-slider-wrapper .splide__arrow {
    top: 110px;
  }
}
.categories-slider-wrapper .splide__pagination .splide__pagination__page {
  border: 1px solid #000000 !important;
}
.categories-slider-wrapper .splide__pagination .splide__pagination__page.is-active {
  background-color: #000000 !important;
}

.category-slide {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.category-slide__image {
  flex: 0 0 50%;
  width: 50%;
  height: 500px;
}
.category-slide__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.category-slide__content {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1rem;
  gap: 1rem;
}
.category-slide__title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .category-slide__title {
    font-size: 1.5rem;
  }
}
.category-slide__description {
  font-size: 0.95rem;
  color: #707070;
  margin-bottom: 0;
  line-height: 1.5;
}
@media only screen and (max-width: 576px) {
  .category-slide {
    flex-direction: column;
  }
  .category-slide__image {
    flex: none;
    width: 100%;
    height: 220px;
  }
  .category-slide__content {
    flex: none;
    width: 100%;
    padding: 2rem;
  }
}
