/* ============================================
   HERO BANNER SECTION CSS
   ============================================ */

.hero-banner-section {
  position: relative;
  padding: 17rem 0 9rem;
  overflow: hidden;
  background-color: var(--color-secondary-black);
}

/* Background Image */
.hero-banner-section .banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-banner-section .banner__bg img {
  max-width: 100%;
  max-height: 100%;
  object-position: center;
}

/* Banner Wrapper */
.hero-banner-section .banner__wrapper {
  gap: 6rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1254fr 1fr;
  align-items: center;
}

/* Banner Content (Left Side) */


.hero-banner-section .banner__label {
  display: inline-block;
  font-size: 2rem;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 2.4rem;
  line-height: normal;
  font-weight: normal;
}

.hero-banner-section .banner__heading {
  color: var(--color-white);
  margin-bottom: 2.4rem;
}

.hero-banner-section .banner__description {
  font-size: 2rem;
  line-height: 1.6;
  color: var(--color-gray);
  font-weight: normal;
}

/* Banner Buttons */
.hero-banner-section .banner__buttons {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 4.4rem;
}


/* Banner Image (Right Side) */
.hero-banner-section .banner__image {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-banner-section .banner__img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.hero-banner-section .banner__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 54.68%;
  z-index: 0;
  border-radius: 2rem;
  overflow: hidden;
}
.hero-banner-section .banner__video-wrapper::before {
  content: '';
  display: block;
  padding-top: 182.85%;
}
.hero-banner-section .banner__video-wrapper .banner__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 106%;
  height: 104%;
  /*object-fit: cover;
  object-position: center;*/
  z-index: 1;
}


/* ============================================
   HERO BANNER SECTION RESPONSIVE CSS
   ============================================ */

@media (max-width: 1599px) {
  .hero-banner-section {
    padding: 14rem 0 8rem;
  }
  
}

@media (max-width: 1439px) {
  .hero-banner-section {
    padding: 13rem 0 7rem;
  }
  .hero-banner-section .banner__wrapper {
    gap: 4rem;
    grid-template-columns: 1.5fr 1fr;
  }
  .hero-banner-section .banner__label {
    font-size: 1.8rem;
  }
  .hero-banner-section .banner__heading {
    margin-bottom: 2rem;
  }
  .hero-banner-section .banner__description {
    margin-bottom: 3rem;
    font-size: 1.8rem;
  }
  
}

@media (max-width: 1199px) {
  .hero-banner-section {
    padding: 12rem 0 6rem;
  }
  .hero-banner-section .banner__label {
    font-size: 1.5rem;
    margin-bottom: 1.6rem;
  }
  .hero-banner-section .banner__description {
    font-size: 1.5rem;
    margin-bottom: 2.4rem;
  }
  .hero-banner-section .banner__buttons {
    gap: 1.2rem;
    margin-top: 2.2rem;
  }
}

@media (max-width: 991px) {
  .hero-banner-section {
    padding: 10rem 0 5rem;
  }
  .hero-banner-section .banner__wrapper {
    gap: 4rem;
  }
  .hero-banner-section .banner__label {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .hero-banner-section .banner__heading {
    margin-bottom: 1rem;
  }
  .hero-banner-section .banner__description {
    font-size: 1.4rem;
  }
  
}

@media (max-width: 767px) {
  .hero-banner-section {
    padding: 8rem 0 4rem;
  }
  .hero-banner-section .banner__wrapper {
    gap: 3rem;
    grid-template-columns: 1fr;
  }
  .hero-banner-section .banner__label {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
  .hero-banner-section .banner__heading {
    margin-bottom: 1.6rem;
  }
  .hero-banner-section .banner__description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  .hero-banner-section .banner__buttons {
    width: 100%;
    gap: 1rem;
  }
  .hero-banner-section .banner__image {
    max-width: 100%;
    justify-content: center;
  }
  .hero-banner-section .banner__image img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  
  
}
