.HomeSlider {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--spaceLg);
  border-radius: 0.75rem;
  overflow: hidden;
}

.HomeSlider:last-child {
  margin-bottom: 0;
}

.HomeSlider-swiper {
  position: relative;
  width: 74%;
  overflow: hidden;
}

@media (max-width: 64rem) {
  .HomeSlider-swiper {
    width: 100%;
  }
}

.HomeSlider-wrapper {
  position: relative;
  display: flex;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
  z-index: var(--layerPageZIndex);
}

.HomeSlider-pagination {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 10px;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: var(--layerPageZIndex);
}

@media (min-width: 64.01rem) {
  .HomeSlider-pagination {
    display: none;
  }
}

.HomeSlider-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 0 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.22);
  font-size: 11px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  pointer-events: auto;
}

.HomeSlider-pagination .swiper-pagination-bullet-active {
  color: #fff;
  background: var(--colorBrand);
}

.HomeSlider-pager {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 26%;
  border: 1px solid var(--colorOutlines);
  border-radius: 0 0.75rem 0.75rem 0;
  overflow: hidden;
  z-index: 2;
}

@media (max-width: 64rem) {
  .HomeSlider-pager {
    display: none;
  }
}

.HomeSlider-pagerItem {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  padding: var(--spaceSm);
  color: #1d212bcc;
  background-color: #fff;
  font-size: var(--textXs);
  font-weight: 500;
  text-decoration: none;
  transition: all .25s ease-in-out;
}

.HomeSlider-pagerItem:hover {
  background-color: #f3f4f6;
  text-decoration: none;
}

.HomeSlider-pagerItem span {
  position: relative;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  z-index: 2;
}

.HomeSlider-pagerItem.active {
  color: #ffffffe6;
  background: var(--colorBrand);
  font-weight: 700;
}

/*# sourceMappingURL=home-slider.min.css.map */
