/* Text Elements */

h1.hero-heading {
  margin-top: 0;
  margin-bottom: 0;
  color: #792e15;
  text-align: center;
  text-transform: capitalize;
  text-shadow: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 72px;
  font-family: 'Spicy Rice', cursive;
  line-height: 1;
}

h1.hero-heading:hover {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

p.paragraph.hero-paragraph {
  margin-bottom: 36px;
  max-width: 960px;
  color: #792e15;
  text-align: center;
  font-size: 22px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  line-height: 30px;
}

/* Layout Elements */

.container {
  padding-left: 0;
}

.container.hero-thanksgiving-trail {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: center;
  -ms-flex-align: end;
  overflow: hidden;
  min-height: 90vh;
  background-color: #ffaf3b;
  background-image: none;
  background-attachment: scroll;
  background-position: left top;
  background-clip: border-box;
  background-origin: padding-box;
  background-size: 0 0;
  background-repeat: no-repeat;

  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  background-blend-mode: normal;
}

.container.hero-content {
  position: absolute;
  top: 300px;
  bottom: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  padding: 48px 24px;
  max-width: 960px;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}

div.responsive-picture.trail-image {
  position: relative;
  max-width: 200px;
}

@media screen and (max-width: 43.75rem) {
  /* Text Elements */

  h1.hero-heading {
    text-align: left;
    font-size: 64px;
    line-height: 64px;
  }

  p.paragraph.hero-paragraph {
    text-align: left;
  }

  /* Layout Elements */

  .container.hero-content {
    -ms-flex-align: start;

    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
  }
}