@import url(https://fonts.googleapis.com/css?family=Work+Sans:200,300,200italic,300italic);

{% set baseFontFamily    = "'Work Sans', arial, sans-serif" %}

#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;
    height: auto;
}

.video-object:before {
  content: '';
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
}

.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%; 

  /* 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%;
}

p.lead {
  font-family: Work Sans, sans-serif;
}

.hero .title h2 {
  font-size: 3.575vw;
  margin-top: 0px;
  font-family: Work Sans, sans-serif;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
  margin-bottom: .35rem;
  line-height: 1.1;
}

.hero .lead p {
    font-weight: 400;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
    font-size: 150%;
    display: inline-block;
    width: 80%;
    margin-bottom: 2%;
}

@media screen and (max-width: 768px) {
  .hero .title h2 {
    top: 10%;
    margin-top: 0;
    line-height: 1.4;
    font-size: 100%;
  }
  
  .hero .lead p {
    margin-bottom: 0.5%;
}
  
  .video-container video {
  width: 200vw;
  height: 200vw; 
  }
  
  .hero .title h2 {
    font-size: 200%;
  }
  
  .container {
    top: 40%;
    height: 35vh;
}
  
  video {
  object-fit: cover;
  }
  
  .video-container {
  height: 100vh;
}
}

@media screen and (max-width: 479px) {
  .hero .lead p {
    margin-bottom: 0.5%;
}
}