/* ----------------------------------------------------------
   Hero Banner Block
   Description: Responsive hero banner with background image,
   overlay, text content, CTA button, and navigation controls
----------------------------------------------------------- */
.block_hero-banner {
  position: relative;
  width: 100%;
  min-height: 31.25rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .block_hero-banner {
    min-height: 37.5rem;
  }
}
@media (min-width: 992px) {
  .block_hero-banner {
    min-height: 45rem;
  }
}
.block_hero-banner .swiper-wrapper {
  height: 45rem;
}
.block_hero-banner__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.block_hero-banner__background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.block_hero-banner__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.block_hero-banner__content {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  max-width: 44.6875rem;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
}
@media (min-width: 992px) {
  .block_hero-banner__content {
    padding-left: 3.125rem;
  }
}
.block_hero-banner__subtitle {
  font-family: var(--font-poppins), sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: var(--white);
  margin: 0;
}
@media (min-width: 768px) {
  .block_hero-banner__subtitle {
    font-size: 1.25rem;
    line-height: 1.375rem;
  }
}
@media (min-width: 992px) {
  .block_hero-banner__subtitle {
    font-size: 1.375rem;
    line-height: 1.5rem;
  }
}
.block_hero-banner__title {
  font-family: var(--font-poppins), sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
  color: var(--white);
  margin: 0 0 1.25rem;
}
@media (min-width: 768px) {
  .block_hero-banner__title {
    font-size: 3.5rem;
    line-height: 4rem;
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 992px) {
  .block_hero-banner__title {
    font-size: 5rem;
    line-height: 5.625rem;
    margin-bottom: 2.5rem;
  }
}
.block_hero-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.8125rem 1.25rem;
  background-color: var(--white);
  color: var(--grey);
  font-family: var(--font-poppins), sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
  text-decoration: none;
  border-radius: 3.125rem;
  border: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  align-self: flex-start;
}
@media (min-width: 992px) {
  .block_hero-banner__button {
    font-size: 1.125rem;
    padding: 0.9375rem 1.5rem;
  }
}
.block_hero-banner__button svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}
.block_hero-banner__button:hover svg {
  transform: translateX(0.25rem);
}
.block_hero-banner__controls {
  position: absolute;
  left: 0;
  bottom: 3.75rem;
  width: 100%;
  height: 3.125rem;
  display: flex;
  justify-content: space-between;
  padding: 0 0.9375rem;
  pointer-events: none;
}
@media (min-width: 768px) {
  .block_hero-banner__controls {
    bottom: 5rem;
    padding: 0 2.5rem;
  }
}
@media (min-width: 992px) {
  .block_hero-banner__controls {
    bottom: 6.25rem;
    padding: 0 5.625rem;
  }
}
.block_hero-banner__nav-button {
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8125rem;
  background-color: transparent;
  border: 0.0625rem solid var(--white);
  border-radius: 3.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}
.block_hero-banner__nav-button svg {
  width: 1.5rem;
  height: 1.5rem;
}
.block_hero-banner__nav-button svg path {
  stroke: var(--white);
}
.block_hero-banner__nav-button--prev {
  left: 0.9375rem;
}
.block_hero-banner__nav-button--next {
  right: 0.9375rem;
}
.block_hero-banner__nav-button--next svg {
  transform: rotate(360deg) scaleY(-1);
}
@media (max-width: 575.98px) {
  .block_hero-banner__controls {
    display: none;
  }
}
