/* HERO STYLESHEET
=============================== */

/* Structure */
.site__hero__section {
  background-color: #222222;
  height: 80vh;
  overflow: hidden;
  min-height: 700px;
  position: relative;
  z-index: 1;
}

.site__hero__section::before,
.site__hero__section::after {
  bottom: 0;
  content: " ";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.site__hero__section::before {
  background: #222222;
  opacity: 0.4;
  z-index: 1;
}

.site__hero__section::after {
  background-image: radial-gradient(55% 45%, rgba(34, 34, 34, 0.00) 15%, #222222 90%);
  opacity: 0.8;
  width: 100%;
  z-index: 2;
}

.site__hero__image {
  object-fit: cover;
  height: 100%;
  opacity: 0;
  transition: opacity 1.75s ease-in;
  width: 100%;
}

.site__hero__image.is-visible {
  opacity: 0.25;
}

.site__hero__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  width: calc(100% - 32px);
  z-index: 10;
}

.site__hero__content .label {
  background-color: #F28929;
  margin-bottom: 32px;
  padding: 8px 16px;
  text-align: center;
}

.site__hero__content .label.is-visible {
  opacity: 1;
  top: 0;
}

.site__hero__content .label p {
  color: #FFFFFF;
  font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue";
  font-stretch: condensed;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1.15px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.site__hero__content .title {
  color: #FFFFFF;
  font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue";
  font-stretch: condensed;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 32px;
  line-height: 72px;
}

@media(min-width: 768px) {
  .site__hero__content .title {
    font-size: 65px;
    line-height: 97px;
  }
}

@media(min-width: 1024px) {
  .site__hero__content .title {
    font-size: 80px;
    line-height: 120px;
  }
}

.site__hero__content .subdeck {
  color: #FFFFFF;
  font-family: 'Georgia', serif;
  font-size: 16px
  font-style: italic;
  line-height: ;
  margin-bottom: 24px;
  max-width: 800px;
}

@media(min-width: 768px) {
  .site__hero__content .subdeck {
    font-size: 24px;
    line-height: 36px;
  }
}

.site__hero__content .byline {
  color: #FFFFFF;
  font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue";
  font-stretch: condensed;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.site__hero__content .sub-byline {
  color: #FFFFFF;
  font-style: italic;
  font-size: 12px;
  line-height: 18px;
  margin: 0;
}

/* Content Animation */
.site__hero__content .label,
.site__hero__content .title,
.site__hero__content .subdeck,
.site__hero__content .divider,
.site__hero__content .byline,
.site__hero__content .sub-byline {
  opacity: 0;
  transition: opacity 1.75s ease-in, top 0.75s ease-in;
}

.site__hero__content .byline,
.site__hero__content .sub-byline {
  position: relative;
  top: 8px;
}

.site__hero__content .label.is-visible,
.site__hero__content .title.is-visible,
.site__hero__content .subdeck.is-visible,
.site__hero__content .divider.is-visible,
.site__hero__content .byline.is-visible,
.site__hero__content .sub-byline.is-visible {
  opacity: 1;
}

.site__hero__content .byline.is-visible,
.site__hero__content .sub-byline.is-visible {
  top: 0;
}
