.section-hero-slider {
  width: 100%;
  min-height: calc(100vw * 3 / 2);
  display: flex;
  align-items: stretch;
  position: relative;
}
@media (width >= 1200px) {
  .section-hero-slider {
    min-height: calc(100vw * 1 / 2);
  }
}
html[data-a11y='enabled'] .section-hero-slider {
  min-height: unset;
}
.section-hero-slider .section__inner {
  width: 100%;
  display: flex;
  align-items: stretch;
  position: relative;
}
.section-hero-slider .section__content {
  width: 100%;
  display: flex;
  align-items: stretch;
  position: relative;
}
.section-hero-slider .swiper {
  width: 100%;
}
.section-hero-slider .swiper-wrapper {
}
.section-hero-slider .swiper-slide {
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.section-hero-slider .swiper-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 30;
  bottom: 1.2rem;
  left: 0;
  right: 0;
  pointer-events: none;
}
@media (width >= 1200px) {
  .section-hero-slider .swiper-controls {
    justify-content: flex-start;
    z-index: 30;
    bottom: 8rem;
    left: 8rem;
    right: unset;
    gap: 2.4rem;
  }
}
.section-hero-slider .swiper-main-navigation {
  display: none;
}
@media (width >= 1200px) {
  .section-hero-slider .swiper-main-navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
    border-radius: 20rem;
    gap: 0.2rem;
    position: relative;
    overflow: hidden;
    background-color: rgb(var(--color-surface-dark-rgb) / 0.25);
    -webkit-backdrop-filter: blur(0.6rem);
    backdrop-filter: blur(0.6rem);
  }
  .section-hero-slider .swiper-main-navigation:before {
    position: absolute;
    content: '';
    background-color: var(--color-text-light);
    left: 50%;
    margin-left: -0.1rem;
    width: 0.2rem;
    top: 1.2rem;
    bottom: 1.2rem;
    opacity: 0.1;
  }
  .section-hero-slider .swiper-main-navigation .swiper-navigation-button {
    width: 6rem;
    height: 6rem;
    flex-shrink: 0;
    display: flex;
    cursor: pointer;
    transition: 0.3s;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
  }
  .section-hero-slider
    .swiper-main-navigation
    .swiper-navigation-button:not(.swiper-button-disabled):hover {
    opacity: 0.7;
  }
  .section-hero-slider
    .swiper-main-navigation
    .swiper-navigation-button.swiper-button-disabled {
    opacity: 0.2;
    cursor: not-allowed;
  }
  .section-hero-slider
    .swiper-main-navigation
    .swiper-navigation-button.swiper-button-lock {
    pointer-events: none;
    display: none;
  }
  .section-hero-slider .swiper-main-navigation .swiper-navigation-button .icon {
    width: 2rem;
    height: 2rem;
    color: var(--color-text-light);
  }
}
.section-hero-slider .swiper-main-pagination.swiper-pagination-bullets-dynamic {
  display: flex;
  background-color: rgb(var(--color-surface-light-rgb) / 0.12);
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
  position: relative;
  padding: 0.8rem 0;
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  width: 4.8rem !important;
  min-width: 4.8rem;
  max-width: 4.8rem;
  overflow: hidden;
  pointer-events: auto;
}
@media (width >= 1200px) {
  .section-hero-slider
    .swiper-main-pagination.swiper-pagination-bullets-dynamic {
    background-color: rgb(var(--color-surface-dark-rgb) / 0.25);
  }
}
.section-hero-slider
  .swiper-main-pagination.swiper-pagination-bullets-dynamic.swiper-pagination-lock {
  display: none;
}
.section-hero-slider
  .swiper-main-pagination.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 20rem;
  background-color: var(--color-text-light);
  display: flex;
  flex-shrink: 0;
  transition: 0.3s;
  position: relative;
  opacity: 0;
  margin: 0 0.2rem !important;
}
.section-hero-slider
  .swiper-main-pagination.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
  opacity: 0.2;
}
.section-hero-slider
  .swiper-main-pagination.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet.swiper-pagination-bullet-active-main.swiper-pagination-bullet-active {
  opacity: 0.6;
}
