/*!
 * Start Bootstrap - Coming Soon v5.0.1 (https://startbootstrap.com/template-overviews/coming-soon)
 * Copyright 2013-2018 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-coming-soon/blob/master/LICENSE)
 */

/*Generic HTML*/
html {
  height: 100vh;
}
body {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  min-height: 35rem;
  font-family: 'Source Sans Pro';
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Merriweather';
  font-weight: 700;
}

/*Main backgrounds*/
video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #AC8435;
  opacity: 0.7;
  z-index: 1;
}

/*No video on touchscreens*/
@media (pointer: coarse) and (hover: none) {
  body {
    background: url("../img/bg-mobile-fallback.jpg") #AC8435 no-repeat center center scroll;
    background-position: cover;
  }
  body video {
    display: none;
  }
}

/*Main content*/
.masthead {
  position: relative;
  width: 70%;
  overflow: hidden;
  padding-bottom: 3rem;
  z-index: 2;
}

.masthead .masthead-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: -1;
  border-radius: 0px 8px 8px 0px;
}

.masthead .masthead-content h1 {font-size: 2.5rem;}
.masthead .masthead-content p {font-size: 1.2rem;}
.masthead .masthead-content p strong {font-weight: 700;}

@media (max-width: 1024px) {
  .masthead {
    width: 100%;
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .masthead .masthead-content {
    padding-left: 3rem;
    padding-right: 10rem;
  }
  .masthead .masthead-content h1 {
    font-size: 3.5rem;
  }
  .masthead .masthead-content p {
    font-size: 1.3rem;
  }
}