.homeCategories {
  background-color: #F8F8F8;
  padding: 40px 0;
  margin: 40px 0;
}
.homeCategories__top {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.homeCategories__text ul{
	margin: 20px 0 0 0;
	list-style:none;
}
.homeCategories__slider {
  margin-top: 30px;
  max-width: 100%;
}
.homeCategories__slider .swiper-wrapper {
  max-width: 100%;
}
.homeCategories__slider__slide {
  width: 260px;
  aspect-ratio: 81/98;
}
.homeCategories__slider__slide a {
  display: block;
  width: 100%;
  aspect-ratio: 81/98;
  border-radius: 8px;
  overflow: hidden;
}
.homeCategories__slider__slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homeCategories__title {
  position: absolute;
  bottom: 20px;
  left: 28px;
  right: 28px;
  font-weight: 600;
  color: #000000;
}
.homeCategories .themeNavigation {
  margin-top: 30px;
}
.homeCategories .themeNavigation .swiper-prev,
.homeCategories .themeNavigation .swiper-next {
  width: 50px;
  height: 50px;
  border-color: #E3E3E3;
}
.homeCategories .themeNavigation .swiper-prev svg path,
.homeCategories .themeNavigation .swiper-next svg path {
  fill: #2E2E2E !important;
}
.homeCategories .themeNavigation .swiper-prev:hover,
.homeCategories .themeNavigation .swiper-next:hover {
  border-color: var(--primary);
}
.homeCategories .themeNavigation .swiper-prev:hover svg path,
.homeCategories .themeNavigation .swiper-next:hover svg path {
  fill: var(--primary) !important;
}

@media (min-width: 700px) {
  .homeCategories__slider {
    margin-top: 50px;
  }
  .themeNavigation {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .homeCategories__top {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }
  .homeCategories__heading {
    grid-column: 1/5;
  }
  .homeCategories__text {
    grid-column: 6/13;
  }
}
@media (min-width: 1500px) {
  .homeCategories {
    padding: 90px 0px 60px;
  }
  .homeCategories__slider {
    margin-top: 90px;
  }
  .themeNavigation {
    margin-top: 50px;
  }
}