.hero-slider {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 560px;
  padding-top: 90px;
  padding-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .hero-slider {
    min-height: 581px;
    padding-top: 232px;
  }
}
.hero-slider__inner {
  position: relative;
  margin-top: 123px;
}
@media screen and (min-width: 992px) {
  .hero-slider__inner {
    margin-top: 90px;
  }
}
.hero-slider__bcrumb-holder {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 12px 0;
}
.hero-slider__bcrumb-holder::before, .hero-slider__bcrumb-holder::after {
  content: "";
  display: block;
  width: calc(100% + 40px);
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hero-slider__bcrumb-holder::before {
  top: 0;
}
.hero-slider__bcrumb-holder::after {
  bottom: 0;
}
@media (max-width: 767px) {
  .hero-slider__bcrumb-holder {
    display: none;
  }
}
.hero-slider .category-block {
  margin-bottom: 15px;
  border: 1px solid var(--white);
  background-color: transparent;
  border-radius: 5px;
  color: white;
}
@media screen and (min-width: 992px) {
  .hero-slider .category-block {
    margin-bottom: 20px;
  }
}
.hero-slider__bcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.hero-slider__bcrumb .item {
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-slider__bcrumb a.item:hover {
  color: var(--primary-1, #c7017f);
}
.hero-slider__overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: var(--black);
  opacity: 0.2;
  z-index: 0;
}
.hero-slider__bcrumb-sep {
  display: inline-flex;
  align-items: center;
  margin: 0 17px;
  color: #fff;
}
.hero-slider__bcrumb-sep svg {
  width: 5.75px;
  height: 10px;
  min-width: auto;
  min-height: auto;
}
.hero-slider__slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
}
.hero-slider__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: auto;
  margin: auto;
}
.hero-slider__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 660px;
  margin: 0 auto;
}
.hero-slider__title {
  font-weight: 400;
  font-size: 35px;
  line-height: 40px;
  color: black;
  text-align: center;
  margin-bottom: 20px;
  word-break: break-word;
  width: fit-content;
  padding: 10px;
  background-color: #f4cce5;
}
@media screen and (min-width: 992px) {
  .hero-slider__title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 30px;
  }
}
.hero-slider__nav-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
}
.hero-slider__pbar-wrapper {
  width: 100%;
  height: 3px;
  position: relative;
  background-color: #ccc;
  max-width: 300px;
}
.hero-slider__button {
  padding: 15px 22px;
  border-radius: 10px;
  background-color: var(--primary-1);
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .hero-slider__button {
    padding: 18px 35px;
    font-size: 18px;
    line-height: 23px;
  }
}
.hero-slider__button:hover {
  background-color: #fff;
  color: var(--primary-1);
}
.hero-slider__pbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-1);
  transition: 300ms transform ease-in-out, 300ms width ease-in-out;
}
.hero-slider__arrows {
  flex: 0 0 auto;
  display: flex;
  gap: 28px;
}
.hero-slider__arrow {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hero-slider__arrow--next {
  transform: rotate(180deg);
}
.hero-slider__arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.hero-slider__arrow svg {
  width: 30px;
  height: 30px;
}
