/* section-video-hero  css */
.section-video-hero {
  padding-inline: 1.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
}
.video-hero-inner-wrap {
  position: relative;
  min-height: 80rem;
}
.video-hero-container {
  position: absolute;
  width: 100%;
  max-width: 53.5rem;
  height: auto;
  left: 0;
  right: 0;
  bottom: 5rem;
  margin: 0 auto;
  z-index: 1;
  background-color: rgba(var(--black-rgb), 0.5);
  border-radius: 1.6rem;
  padding: 3rem 2.5rem;
}
.video-hero-product-wrap {
  gap: 2rem 3rem;
}
.video-hero-product-img {
  max-width: 11.8rem;
}
.video-hero-product-img img {
  width: 100%;
}
.video-hero-product-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light);
}
.video-hero-product-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--light);
}

@media only screen and (max-width: 1050px) {
  .video-hero-inner-wrap  {
    min-height: 60rem;
  }
	.video-hero-container { border-radius: 0.8rem; }
}
@media only screen and (max-width: 991px) {
  .video-hero-inner-wrap  {
    min-height: 56rem;
  }
}
@media only screen and (max-width: 768px) {
  .video-hero-inner-wrap  {
    min-height: 50rem;
  }
  .video-hero-container {
    max-width: 40.5rem;
    bottom: 3rem;
  }
  .video-hero-product-img { display: none; }
}
@media only screen and (max-width: 520px) {
  .video-hero-container {
    max-width: 24.5rem;
    padding: 2rem 1.5rem;
  }
  .video-hero-product-wrap {
    flex-direction: column;
  }
}