#content-desktop {display: block;}
#content-mobile {display: none !important;}

@media screen and (max-width: 768px) {

#content-desktop {display: none !important;}
#content-mobile {display: block !important;;}
}

.cta-sec {
  width: 100%;
  margin: 50px 0px;
  text-align:-webkit-center;
}

.cta-center {
 margin: auto;
    text-align:center;
}

.scroll {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index:99;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.video-object:before {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.65);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.video-container {
  position: relative;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%; 
  overflow: hidden;
}
.video-container video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 
  max-width: 100%;

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;

  /* Center the video */
  top: 50%;
  left: 50%;
}

.logo {
  margin-bottom: 25px;
}
/** remove font 
p.lead {
  font-family: Lato, sans-serif;
}

.hero .title h2 {
  font-size: 3.575rem;
  margin-top: 0px;
  font-family: Lato, sans-serif;
  font-weight: 500;
  margin-bottom: .35rem;
  line-height: 1.1;
  letter-spacing: -.05em;
}

.hero .lead p {
    font-weight: 400;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.75);
    display: inline-block;
    width: 80%;
    margin-bottom: 50px;
}
**/

@media (max-width: 767px)
{
.video-container video {
  /* Make video to at least 100% wide and tall */ 
  max-width: none;
  height: -webkit-fill-available;
  transform: translateX(-50%);
}

.hero .lead p {    
    width: 100%;  
}

.video-container img {
  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 
  max-width: 100%;

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;

  /* Center the video */
  top: 50%;
  left: 50%;
}

.img-gradient:after {
  content:'';
  position:absolute;
  left:0; top:0;
  width:100%; height:100%;
  display:inline-block; 
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)); /* W3C */
}

.img-gradient img{
  display:block;
  
}