/** Shopify CDN: Minification failed

Line 59:0 Unexpected "<"
Line 99:0 Unexpected "<"

**/
.video-section__media {
  --ratio-percent: 56.25%;
  position: relative;
  padding-bottom: calc(var(--ratio-percent) - var(--media-border-width));
}

/* Needed for gradient continuity with or without animation so that transparent PNG images come up as we would expect */
.scroll-trigger:where(.gradient.video-section__media) {
  background: transparent;
}

.video-section__media.global-media-settings--full-width {
  padding-bottom: var(--ratio-percent);
}

.video-section__media.deferred-media {
  box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
}

.video-section__media.deferred-media:after {
  content: none;
}

.video-section__poster.deferred-media__poster:focus {
  outline-offset: 0.3rem;
}

.video-section__media iframe {
  background-color: rgba(var(--color-foreground), 0.03);
  border: 0;
}

.video-section__poster,
.video-section__media iframe,
.video-section__media video {
  position: absolute;
  width: 100%;
  height: 100%;
}

.video-section__media video {
  background: #000000;
}

.video-section__media.media-fit-cover video {
  object-fit: cover;
}




<div style="display: flex; justify-content: space-between; gap: 0px; padding: 0px;">
/* Contenedor del video */
.banner-video-container {
  position: absolute;
  width: 100%;
  height: 100%; /* Puedes ajustar la altura según tu diseño */
  overflow: hidden; 
  margin: 0; /* Elimina cualquier margen adicional */ 
  padding: 0; /* Elimina cualquier padding adicional */ }

/* Estilo del video */
.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden; 
  z-index: -1; /* Asegura que el video esté detrás del contenido */
}

/* Contenido del banner */
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
}


/* Logo del banner */
.logo-banner {
  max-width: 120px; /* Ajusta el tamaño de tu logo */
  margin-bottom: 0px;
}

<div style="display: flex; justify-content: space-between; gap: 0px; padding: 0px;">
/* Estilo del título */
.banner-content h6 {
  font-size: 20x; /* Ajusta el tamaño de la fuente */
  margin-bottom: 0px;
}


/* Estilo del subtítulo */
.banner-content p {
  font-size: 12px; /* Ajusta el tamaño de la fuente */
  margin-bottom: 0px;
}


/* Botón de "Shop Now" */
.shop-now-btn {
  background-color: #fff;
  color: #000;
  padding: 3px 3px;
  text-decoration: none;
  font-weight: ;
  border-radius: 3px;
  transition: background-color 0.3s;
}

.shop-now-btn:hover {
  background-color: #ccc;
}


/* Eliminar márgenes y padding del cuerpo y el html */ 
body, html { margin: 0; padding: 0;}