.HeroItem {
  position: relative;
  display: flex;
  flex-flow: column;
  flex-shrink: 0;
  width: 100%;
  transition-property: transform;
  overflow: hidden;
  box-sizing: border-box;
}

@media (min-width: 64.01rem) {
  .HeroItem {
    height: 48.75rem;
    flex-flow: row;
  }
}

.HeroItem-content {
  position: relative;
  display: grid;
  grid-template-areas: "title" "product" "text" "button" "controls";
  gap: 1.875rem;
  padding: 2rem var(--sizeContentOffset) 5rem;
  background-color: var(--colorWhite);
  margin-left: var(--customOffset);
  flex: 1;
  text-align: center;
}

@media (min-width: 32.01rem) {
  .HeroItem-content {
    grid-template-areas: "title product" "text product" "button product" "controls controls";
    text-align: left;
  }
}

@media (min-width: 64.01rem) {
  .HeroItem-content {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: calc(41rem + var(--customOffset));
    min-width: 30rem;
    margin-bottom: 4rem;
    flex: unset;
  }
}

.HeroItem-title {
  grid-area: title;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  font-weight: 400;
}

@media (max-width: 32rem) {
  .HeroItem-title {
    font-size: var(--textMd);
  }
}

@media (max-width: 830px) {
  .HeroItem-title {
    max-width: unset;
  }
}

.HeroItem:not(.swiper-slide-active) {
  pointer-events: none;
}

.HeroItem-text {
  grid-area: text;
  font-size: var(--textSm);
  margin: 0 0 var(--spaceSm);
  color: var(--colorBlack);
  max-width: 30em;
  line-height: var(--bodyLineHeight);
}

.HeroItem-text:last-child {
  margin-bottom: 0;
}

.HeroItem-image {
  display: flex;
  position: relative;
}

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

.HeroItem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.HeroItem-imageMobile {
  order: -1;
}

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

.HeroItem-product {
  position: relative;
  grid-area: product;
  max-width: 30rem;
}

@media (min-width: 64.01rem) {
  .HeroItem-product {
    position: absolute;
    left: calc(100% - 2rem);
    top: 2rem;
    z-index: 1;
    max-width: unset;
  }
}

.HeroItem-product:not(:has(> *)) {
  display: none;
}

.HeroItem-button {
  grid-area: button;
}

.HeroItem-controls {
  position: absolute;
  grid-area: controls;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding: clamp(1rem, 1.6vw, 2rem) 1.25rem;
  color: #777574;
  z-index: var(--layerPageZIndex);
}

@media (min-width: 64.01rem) {
  .HeroItem-controls {
    bottom: 0;
    left: unset;
    right: 0;
    background-color: #EEEEEE;
    transform: none;
  }
}

.HeroItem-controls > * {
  display: flex;
  align-items: center;
}

.HeroItem-next, .HeroItem-prev {
  cursor: pointer;
  opacity: 0.7;
  transition: var(--animationBase);
}

.HeroItem-next:hover, .HeroItem-next:active, .HeroItem-next:focus, .HeroItem-prev:hover, .HeroItem-prev:active, .HeroItem-prev:focus {
  filter: drop-shadow(0 0 1px #777574);
  opacity: 1;
}

.HeroItem-pagination {
  opacity: 0.8;
  font-family: var(--font-secondary);
  font-variant-numeric: lining-nums proportional-nums;
}

.HeroItem-pagination > span {
  min-width: 1ch;
}

.HeroItem-pagination > span:first-of-type {
  text-align: right;
}

/*# sourceMappingURL=hero-item.min.css.map */
