#video-banner{
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: right center;
}
  
#background-video {  
  height: 100%;
  width: 177.77777778vh; /* 100 * 16 / 9 */
  min-width: 100%;
  min-height: 56.25vw; /* 100 * 9 / 16 */
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

#hero-overlay{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
  background: rgb(209,18,66);
  background: -moz-linear-gradient(10deg, rgba(209,18,66,1) 0%, rgba(0,45,98,1) 100%);
  background: -webkit-linear-gradient(10deg, rgba(209,18,66,1) 0%, rgba(0,45,98,1) 100%);
  background: linear-gradient(10deg, rgba(209,18,66,1) 0%, rgba(0,45,98,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d11242",endColorstr="#002d62",GradientType=1);
}

#pattern-overlay{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  z-index: 2;
  background-image: url('https://info.churchillmortgage.com/hubfs/HeroesFirstAssets/vid-overlay-pattern.jpg');
  background-size: 50px;
  background-repeat: repeat;
}

#hero-content{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  min-width: 400px;
  max-width: 1200px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#hero-contant div span strong, #hero-contant span, #hero-contant h1, #hero-contant h2, #hero-contant h3, #hero-contant h4, #hero-contant h5, #hero-contant h6, #hero-contant div p{
  text-shadow: -1px 1px 12px rgba(0, 0, 0, 0.6);
}

.txt-shadow{
  text-shadow: -1px 1px 12px rgba(0, 0, 0, 0.6);
}

.hero-button{
  display: block;
  padding: 0.5rem 2rem;
  margin: 1rem auto;
  background: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  max-width: 225px;
}

#hero-seperator{
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: auto;
  z-index: 2;
}
#hero-seperator img{
  width: 100%;
  height: 40px;
}

#top-hero-seperator{
  position: absolute;
  left: 0;
  top: -2px;
  width: 100%;
  height: auto;
  z-index: 2;
}
#top-hero-seperator img{
  width: 100%;
  height: 40px;
}

@media screen and (max-width: 767px) {
  #background-video{
    opacity: 0;
  }
}