
.intro-container {
  width: 100%;
  padding: 0;
  position: relative;
  color: #fff;
  text-align: left;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.hero {
  width: 87vw;
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/backgrounds/bg01.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  -webkit-transition: all 1500ms ease-in-out;
  transition: all 1500ms ease-in-out;
}

.hero-text {
  width: 100%;
}

.hero-text-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hero-first-column {
  width: 40%;
  padding-right: 2em;
}

.hero-second-column {
  width: 60%;
  padding-left: 2em;
}

.hero-text h1 {
  text-shadow: 0px 1px 3px rgba(0,0,0,0.8);
  margin-bottom: 0.3em;
  font-weight: 400;
  font-size: 1.9em;
  letter-spacing: -.01em;
  line-height: 95%;
}

.hero-text h1 strong {
  text-transform: uppercase;
  font-size: 1.1em;
  font-weight: 800;
}

.hero-text h2 {
  font-size: 1em;
  line-height: 130%;
  text-shadow: 0px 1px 3px rgba(0,0,0,0.8);
  font-weight: 600;
  color: #fff;
}

.hero-text p {
  font-weight: 400;
  margin-bottom: 1.3em;
  line-height: 135%;
  text-shadow: 0px 1px 3px rgba(0,0,0,0.8);
}
@media screen and (max-width: 1279px) {
  .hero-text {
    max-width: 100%;
  }
  .hero-text h1 {
    margin: 0 auto 0.1em;
    font-size: 2em;
  }
}
@media screen and (max-width: 990px) {
  .intro-container {
    padding: 2em 0;
  }
  .hero-text h1 {
    margin: 0 auto 0.1em;
    font-size: 1.9em;
  }
  .hero-first-column {
    width: 100%;
    padding-right: 0em;
  }

  .hero-second-column {
    width: 100%;
    padding-left: 0em;
  }
}
@media screen and (max-width: 768px) {
  .hero-text h2 {
    margin: 0 auto 1em;
  }
  .hero-text p {
    max-width: 40em;
    margin: 0 auto 2em;
  }
}