/* HERO banner base */
.hero-banner {
  padding: 0;
  background: #F9F9F9;
  position: relative;
  z-index: 1;
}

.hero-banner-wrapper {
  position: relative;
  overflow: hidden;
  height: 100vh;           
  height: 100svh;          
}

@supports (height: 100dvh){
  .hero-banner-wrapper{
    height: 100dvh;        
  }
}

 
.hero-banner-wrapper .hero-swiper,
.hero-banner-wrapper .swiper-wrapper,
.hero-banner-wrapper .swiper-slide {
  height: 100%;
}

 
.hero-banner-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

 
.hero-banner-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.23) 30%,
    rgba(0, 0, 0, 0.10) 100%
  );
}

 
.hero-banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  color: #fff;
}

/* Desktop */
@media (max-width: 980px) {
  .blueBox h1 { font-size: 80px; }
}

/* Tablet */
@media (max-width: 1120px) {
  .hero-banner-content { padding: 30px; }
}

 
@media (max-width: 782px) {
  .hero-banner-content { padding: 22px; }
  .h1-bnn { font-size: 40px !important; margin-bottom: 18px; }

 
  .hero-banner-media{
    object-fit: contain;
    object-position: center;
    background: #F9F9F9;  
  }
 
  .hero-banner-wrapper{
    height: 78vh;
    height: 78svh;
  }
  @supports (height: 100dvh){
    .hero-banner-wrapper{
      height: 78dvh;
    }
  }
}

/* Menu overlay */
.menu.scroll-section {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999 !important;
  background: #FFF;
}

.page { overflow: visible !important; }

body.admin-bar .menu.scroll-section { top: 32px !important; }

@media screen and (max-width: 782px) {
  body.admin-bar .menu.scroll-section { top: 46px !important; }
}

body.admin-bar .hero-banner {
  padding-top: calc(15px + 32px);
}

/* Pagination */
.hero-banner-wrapper .hero-pagination {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  padding-right: 30px;
  padding-bottom: 10px;
  width: auto;
}

.hero-banner-wrapper .hero-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  margin: 0 !important;
  border-radius: 999px;
  background: #DC2A0B;
  opacity: 0.35;
}

.hero-banner-wrapper .hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
 
@media (max-width: 782px) {
  .hero-banner-wrapper{
    height: 62vh;
    height: 62svh;
  }
  @supports (height: 100dvh){
    .hero-banner-wrapper{ height: 100dvh; }
  }

  .hero-banner-media{
    height: 100%;
    object-fit: cover;
    object-position: 10% 35%;
  }

  .hero-banner-content { padding: 22px; }
  .h1-bnn { font-size: 40px !important; margin-bottom: 18px; }
}
