#banner {
  display: -ms-flexbox;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  padding: 8em 0 6em 0;
  -moz-align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  background-color: #000;
  background: url("../photos/about.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 0;
  min-height: 100vh;
  height: 100vh !important;
  position: relative;
  text-align: center;
  overflow: hidden;
}

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

  #banner {
    background: url("../photos/about.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size:cover;
    background-size: cover;
  }

}

#banner h1 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.5em;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px #000;
  margin-bottom: .75em;
  color: #FFF;
}

#banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.75em;
}

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

  #banner {
    font-size: .85em;
  }

  #banner br {
    display: none;
  }

}

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

  #banner {
    min-height: 0;
    padding: 8em 2em 4em 2em;
  }

  #banner .inner {
    width: 100%;
  }

  #banner h1 {
    margin-bottom: 0.75em;
    padding-bottom: 0;
  }

  #banner p {
    font-size: 1.25em;
  }

  #banner .button {
    width: 100%;
  }

}

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

  #banner p {
    font-size: 1em;
  }

}

body.is-loading #banner .inner {
  -moz-transform: scale(0.99);
  -webkit-transform: scale(0.99);
  -ms-transform: scale(0.99);
  transform: scale(0.99);
  opacity: 0;
}

body.is-loading #banner:before {
  opacity: 1;
}

body, html {
  height: 100%;
}

.parallax {
  /* The image used */
  background-image: url("../photos/about.jpg");

  /* Full height */
  height: 100%;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {
  .parallax {
    background-attachment: scroll;
  }
}
