* {
  padding: 0;
  margin: 0;
}



.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;

  /**
   * Default height
   */
  height: 100%;
}

.caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;

  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

  height: 100%;
}

.caption .border {
  background-color: rgba(35, 40, 74, .6);
  color: #fff;
  padding: 18px 25px;
  font-size: 27px;
  letter-spacing: 5px;
  text-transform: uppercase;
  /* font-family: 'Libre Baskerville', serif; */
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}

h3 {
}

.text {
  color: #777777;
  background-color: #ffffff;
  text-align: center;
  padding: 50px 80px;
  text-align: justify;
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
  .parallax {
    background-size: cover;
    background-attachment: inherit;
    height: 500px !important;
    background-position: center center !important;
  }
}
