/* .banner{
    height: 100vh; 
}  */
.banner{
    height: 75vh;
    position: relative;
  }
.banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.banner::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(2, 19, 26, 0.12);
    content: "";
}

/* Optional content styling */
/* .content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: center;
    font-size: 36px;
    z-index: 1;
    right: 0;
    padding: 0 70px;
} */
.banner .banner-heading{
   font-weight: 700;
   font-size: 70px;
   text-align: center;
}
.banner .banner-txt{
   font-size: 24px;
   font-weight: 500;
}

@media screen and (max-width:992px) {
  .banner .banner-heading {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .banner .banner-heading {
      font-size:38px;
  }
  .banner .banner-txt {
    font-size: 16px;
    font-weight: 300;
}
}

@media screen and (max-width: 767px) {

  .banner .banner-heading {
    font-size: 26px;
    font-weight: 500;
    line-height: 41px;
}
/* .content {
  padding: 0 42px;
} */
}