@import url('https://fonts.googleapis.com/css2?family=New+Amsterdam&amp;display=swap');

/* Hero Video */
.outter.hero-video{
  width:100%;
  height:100%;
  display:block;
  position:relative;
  text-align:center;
}

.hero-video {
  
.video-container {
  height:768px;
  width:100%;
  position: relative;
  text-align:center;
}

video {
  object-fit: cover; // Set the magic
  position: absolute;
  height: 768px;
  width: 100%;
  top: 0;
  left: 0;
}

.video-container:after {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(black, .2);
  z-index: 1;
  text-align:center;
}

#heading h1 {
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1;
  color: white;
  font-weight: 400;
  font-style: normal;
  font-family: 'Prata', serif;
  text-shadow:1px 1px 1px #000;
  }
  
#heading h1.text { font-family: "New Amsterdam", sans-serif; font-size:50px; text-shadow:1px 1px 1px #000; }

.desc{
  color: white;
  font-weight:400;
  font-size:18px;
  height:20px;
}

.callout {
  position:absolute;
  height: 20%;
  text-align: center;
  z-index: 10;
  width: 100%;
  top:250px;
  margin-left:auto !important;
  margin-right:auto !important;
}

.button {
  background-color:#f60;
  border-radius:0px;
  margin-top:50px;
  background-color:#82bb00;
  padding:15px 30px;
  border-radius:0px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  }
    a.button {
    cursor: pointer;
    background-color: #007bff;
	font-family: 'Prata', serif;
	color:#fff;
  }
  .button:hover {
    cursor: pointer;
	color:#fff;
    background-color: #a07bf7;
  }
  
  @media only screen and (max-width: 600px) {

.video-container {
  height:auto !important;
  width:100%;
  position: relative;
  text-align:center;
}

video {
  object-fit: cover; // Set the magic
  position: absolute;
  height: auto !important;
  width: 100%;
  top: 0;
  left: 0;
}

#heading h1 { display:none !important; }


}