<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#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;}
}

.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.3);
  border-radius: 5px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.video-container {
  position: relative;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 800px; 
  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 &amp; height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;

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

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;
    font-size: 28px;
}


@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 &amp; 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;
  
}



</pre></body></html>