/* Hero */

.hero-img-mobile-container {
  display: none;
}
.hero-section {
  height: calc(100% - 3em);
  width: 100%;
  background-image: url(../img/home/background.jpg);
  background-size: cover;
  background-position: top center;
  display: flex; -webkit-flex;
  flex-direction: row;
  justify-content: left;
}
.hero-container-text {
  width: 40%;
  height: auto;
  display: flex; -webkit-flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(0, 0, 0, .7);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.25);
  -webkit-animation-duration: .7s;
  -webkit-animation-delay: .7s;
}
.hero-content-text {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
}
.quote ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.hero-content-text .quote {
  display: flex; -webkit-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 2em;
  font-family: 'Merriweather', serif;
  font-size: calc(10px + 1vw);
  font-weight: 300;
  color: #fff;
  text-align: left;
}
.word1 {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: calc(14px + 1.5vw);
  font-weight: 700;
  color: #92754d;
  text-align: left;
  line-height: 1em;
}
.word2 {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-weight: 700;
  font-size: calc(14px + 1.5vw);
  color: #92754d;
  text-align: left;
  line-height: 1em;
}
.word3 {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-weight: 700;
  font-size: calc(14px + 1.5vw);
  color: #92754d;
  text-align: left;
  line-height: 1em;
}
.word4 {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-weight: 700;
  font-size: calc(14px + 1.5vw);
  color: #92754d;
  text-align: left;
  line-height: 1em;
}
.down-arrow {
  color: #fff;
  margin: 0 auto;
  padding-bottom: 1em;
}
#down-arrow-img {
  -webkit-animation-iteration-count: 1;
  position: absolute;
}

/* Introduction */

.intro-section {
  width: 100%;
  height: auto;
  background-color: #fff;
  background-size: cover;
  z-index: 0;
}
.intro-section h1 {
  font-family: 'Merriweather', serif;
  font-size: calc(18px + 1.5vw);
  font-weight: 300;
  color: #000;
}
.intro-content {
  width: 80%;
  margin: auto;
}
.intro-container-TOC {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding-top: 2em
}
.intro-content-mobile {
  display: none;
}
.intro-content-TOC {
  display: table;
  margin: 0 auto;
}
.intro-content-TOC .TOC-link {
  display: table-cell;
  height: auto;
  padding: 2em;
  padding-top: 1em;
  padding-bottom: 1em;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.TOC-link:hover {
  opacity: .75;
  z-index: 10;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.1);
  transition: all 200ms ease-in;
  transform: scale(1.1);
}
.intro-content-TOC img {
  margin: auto;
  height: auto;
  width: 100%;
}
.intro-container-text {
  width: 100%;
  height: auto;
  display: flex; -webkit-flex;
  flex-direction: row;
  justify-content: center;
}
.intro-content-text {
  display: table;
  margin: 0 auto;
  padding-left: 3em;
  padding-right: 3em;
  padding-top: 2em;
  padding-bottom: 4em;
}
.intro-content-text p {
  font-size: calc(6px + 1vw);
  line-height: calc(12px + 1.5vw);
  font-weight: 400;
  text-align: left;
}

/*Smaller Media*/

@media (pointer:coarse) {
}

@media only screen and (max-width: 812px), screen and (max-width: 1024px) and (orientation: portrait) {
  .hero-section {
    height: calc(100% - 3em);
    background-image: url(../img/home/background-mobile.jpg);
    background-position: top center;
    flex-direction: column;
    justify-content: center;
  }
  .hero-container-text {
    width: 100%;
    height: auto;
  }
  .hero-content-text .quote {
    font-size: calc(8px + 2vw);
  }
  .intro-section {
    height: auto;
    display: block;
  }
  .intro-container-img {
    display: none;
  }
  .intro-container-text {
    width: 100%;
    background-color: rgba(255, 255, 255, .7);
    padding-top: 0em;
    padding-bottom: 2em;
  }
  .intro-content-TOC {
    display: none;
  }
  .intro-content-mobile {
    display: block;
  }
  .intro-content-mobile .TOC-link img {
    width: 100%;
    padding-bottom: 2em;
  }
  .intro-content-text {
    max-width: 100%;
    height: auto;
    padding: 0em;
  }
  .intro-content-text .leader {
    font-size: 1.6em;
    line-height: 1em;
  }
  .intro-content-text p {
    font-size: calc(12px + 1.2vw);
    line-height: calc(24px + 1.4vw);
    font-weight: 400;
    text-align: left;
  }

@media only screen and (max-width: 812px) and (orientation: landscape) {
  .hero-container-text {
    height: 100%;
  }
  .hero-content-text .quote {
    font-size: calc(4px + 2vw);
  }

  .intro-content-mobile .TOC-link img {
    width: 70%;
    padding-bottom: 2em;
    margin-left: 15%;
  }
}
