.op-header-video {
  width: 100%;
  margin: 0;
  position: relative;
}

.op-header-video .video-background {
  width: 100%;
  height: 576px;
}

.op-header-video .video-background video {
  width: 100%; 
  height: 100%;
  object-fit: cover;
}

.op-header-video .content {
  position: absolute;
  top: 50%;
  left: 5%; 
  transform: translateY(-50%);
  display: grid;
  justify-content: flex-start;
  width: 90%; 
  text-align: left; 
}

.op-header-video .content .text-content {
  width: 100%; 
  margin: 0; 
}

.op-header-video .content .button {
  margin-top: 20px; 
}

.op-header-video .content .button a {
  color: white;
  background-color: #009B48; 
  padding: 12px 24px; 
  border-radius: 5px; 
  text-decoration: none;
  font-size: 1rem; 
  display: inline-block; 
  text-align: left; 
}

.op-header-video .content .button a:hover {
  background-color: #007A38; 
}

.op-header-video .content h1 {
  color: white;
  font-size: 2rem; 
  line-height: 1.5; 
  margin-bottom: 10px;
}

.op-header-video .content h4 {
  color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1rem;
  line-height: 1.4; 
}

@media (min-width: 768px) {
  .op-header-video .content {
    left: 5%;
    width: 100%; 
  }

  .op-header-video .content h1 {
    font-size: 2.5rem;
  }

  .op-header-video .content h4 {
    font-size: 1.2rem;
  }

  .op-header-video .content .button a {
    font-size: 1.1rem;
  }
}

@media (min-width: 992px) {
  .op-header-video .content {
    width: 70%; 
  }
}


@media only screen and (min-width: 1200px) {
  .op-header-video .content {
    width: 60%;
  }

  .op-header-video .content h1 {
    font-size: 3rem; 
  }

  .op-header-video .content h4 {
    font-size: 1.5rem; 
  }

  .op-header-video .content .button a {
    font-size: 1.2rem;
    padding: 12px 24px; 
  }
}

@media (max-width: 576px) {
  .op-header-video .content {
    left: 5%; 
    width: 90%; 
    text-align: left; 
  }

  .op-header-video .content h1 {
    font-size: 1.8rem;
  }

  .op-header-video .content h4 {
    font-size: 0.9rem; 
  }

  .op-header-video .content .button a {
    font-size: 0.9rem; 
    padding: 8px 16px; 
  }
}