.op-header-video{
  position: relative;
}

.op-header-video .video-background video{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.op-header-video .content{
  position: absolute;
  top: 30%;
  justify-content: center;
  display: grid;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.op-header-video .content .text-content{
  width: 90%;
  margin: 0 auto;
}

.op-header-video .content .button a{
	color: white;
}

.op-header-video .content .button a:hover{
	color: var(--color-primary);
}

.op-header-video .content h1{
  color: white;
}

.op-header-video .content h4{
    color: white;
    padding-top: 16px;
    padding-bottom: 48px;
}

.video-header {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5; /* O usa 16/4 si prefieres */
    overflow: hidden;
  }

  .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .video-container iframe {
    position: absolute;
    top: 35%;
    left: 50%;
    width: 177.78%; /* 100 * (16/9) / (16/5) = 177.78% para 16:5 */
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

@media (min-width: 992px) { 
  .op-header-video .video-background video{
    height: 100vh;
    max-height: 768px;
  }
  .op-header-video .content{
    position: absolute;
    top: 40%;
  }
  .op-header-video .content .text-content{
    width: 75%;
  }
  .op-header-video .flex-direction-nav{
    bottom: 23px;
    position: absolute;
    right: 0;
  }
  .op-header-video .description {
    padding-top: 20x;
    font-size: 20px;
    line-height: 30px;
    width: 100%;
    text-align: left;
    padding-bottom: 24px;
  }

 }
 @media only screen and (min-width: 1200px) {

  .op-header-video .content .text-content{
    width: 50%;
    margin: unset;
  }

}