/* Reset */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* Banner Container */
.hero-banner{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* Video */
.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

/* Dark Overlay */
.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.45);
  z-index:2;
}

/* Content */
.hero-content{
  position:relative;
  z-index:3;
  color:#fff;
  padding:20px;
  max-width:800px;
}

/* Heading */
.hero-content h1{
  font-size:48px;
  margin-bottom:15px;
  line-height:1.2;
}

/* Text */
.hero-content p{
  font-size:18px;
  margin-bottom:25px;
}

/* Button */
.hero-btn{
  display:inline-block;
  padding:12px 30px;
  background:#ff6a00;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border-radius:5px;
  transition:0.3s;
}

.hero-btn:hover{
  background:#ff8533;
}

/* Tablet */
@media (max-width:991px){

.hero-content h1{
  font-size:36px;
}

.hero-content p{
  font-size:16px;
}

.hero-banner{
  height:75vh;
}

}

/* Mobile */
@media (max-width:600px){

.hero-banner{
  height:65vh;
}

.hero-content h1{
  font-size:26px;
}

.hero-content p{
  font-size:14px;
}

.hero-btn{
  padding:10px 22px;
  font-size:14px;
}

}