@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');


.hero-title {
  position: absolute;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 6.5rem;
  font-weight: 700;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: 2px 2px 5px #000;
  width: 100%;
}
.hero-subtitle {
  position: absolute;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: 2px 2px 5px #000;
  width: 100%;
}

.hero-btn{
   position: absolute;
  color: #fff!important;
  font-size: 1.5rem;
  font-weight: 700;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin-top:45px;
  background:#cd0100;
  border:none;
  border-radius:10px;
  padding:20px;
  z-index:10;
  }
  .hero-btn a{
    color:#fff;
	text-decoration:none;
	}
	
.overlay {
  position: absolute;
  top: 0;
  left:0;
  height: 100%;
  width:100%;
  opacity:1;
  background: #000000;
  z-index:1;
  mix-blend-mode: hard-light;
}
video{
  z-index:0;
}

@media screen and (max-width: 980px) {
  .hero-title {
    font-size: 4rem;
    top: 40%;
  }
  .hero-subtitle {
    font-size: 2rem;
    top: 50%;
  }
  .hero-btn{
  margin-top:10px;
  top: 60%;
  padding:10px;
}
}
@media screen and (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
    top: 15%;
  }
  .hero-subtitle {
    font-size: 1.5rem;
    top: 20%;
  }
    .hero-btn{
  margin-top:10px;
  top: 30%;
  padding:10px;
  font-size:1.2rem;
}
}