/* Hero container */
.hero {
  position: relative;
  display: block;
  width: 100vw;
  min-height: 620px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
  overflow: hidden;
    margin-left: -20px;
}

/* Color overlay if desired - just add div at top with overlay class */
.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color .1s linear;
  z-index: 3; /* video is z-index: -1; */
  background-color: green;
  opacity: 0.75;
}

/* Video element */
.hero-video {
  left: 50%;
  min-height: 100%;
/*   max-height: 172%; */
  min-width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translate(-50%, -50%);
  z-index: -1;
/*   opacity: 0; */
  /* display: none;  don't display on mobile? */
}

.cta-vid {
  position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
   /* width: 90%; */
}

@media only screen and (max-width: 480px) {
	/* mobile styles go here */
  .hero { 
    max-height: 95vh;
    min-height: 340px;
    width: 100vw;
    margin-left: 0px;
  }
  .hero-video {
    max-height: 100%;
  }
  .cta-vid img {
    width: 90vw;
    height: auto;
  }
}
@media only screen and (min-width: 767px) and (max-width: 768px) {
      .hero { 
    max-height: 95vh;
    min-height: 340px;
      min-width: 100vw;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
	/* tablet styles go here */
    .hero { 
    max-height: 95vh;
    min-height: 340px;
      min-width: 100vw;
      margin-left: 0;
  }
  .hero-video {
     max-height: 130%;
  }

   .cta-vid img {
    width: 90vw;
    height: auto;
  }
}

@media only screen and (min-width: 769px) {
	/* desktop styles go here */
  .hero {
    /* Remove background image */
    background-image: unset;
  }
  /*.hero_video {
    /* Show video 
    display: block;
  }*/
}