.banner {
  position: relative;
  width: 100%;
  min-height: 65vh; /* Full screen height */
  display: flex;
  /* justify-content: center; */
  /*align-items: end;*/
  overflow: hidden;
  /*color: white;*/
  /* text-align: center; */
}

/* Background Video */
.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}
.time{
  font-size: 3.5rem;
}

/* Gradient Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgb(0 0 0 / 37%) 0%, #0000007a 45%);
  z-index: -2;
  z-index: -2;
}

/* Banner Content */
.banner-content {
  position: relative;
  /* z-index: 1; */
  /* width: 50%; */
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.banner-content .btn { 
  margin-top: 20px;
  font-size: 1rem;
  padding: 10px 20px;
  color: #ffffff;
  border-radius: 0;
  background-color: #BE9B3F;
}
.btn:hover {
      border: 2px solid #BE9B3F;
      color: #BE9B3F;
  }
.maintext {
  font-size: 2rem;
  /* text-transform: uppercase; */
}

@media (max-width: 1200px) {
  .maintext {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .maintext {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .maintext {
    font-size: 2rem;
  }
  .bg-cover-fixed {
    background-attachment: scroll !important;
  }
}

@media (max-width: 576px) {
  .maintext {
    font-size: 1.7rem;
  }
  img.logo {
      max-width: 300px;
      filter: brightness(0) invert(1);
  }
  .banner-h {
      font-size: 2rem;
      color: #fff;
  }
  .banner {
    position: relative;
    width: 100%;
    min-height: 31vh;
    display: flex;
    overflow: hidden;
}
}


