/* ****** Functions */
/*
https://css-tricks.com/snippets/sass/px-to-em-functions/
EXAMPLES:
h1 {
  font-size: em(32);
}

// is the same as:

h1 {
  font-size: em(32px);
}
*/
/* ****** Variables */
/* ****** Colors */
/* ****** Color Variables */
/* ****** Sizes */
/* ****** Fonts */
/* ****** Base module styles */
.Hero {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 675px;
  margin-bottom: 2.1875em;
  position: relative;
  z-index: 0;
}
.Hero::after {
  background-image: linear-gradient(to right, #000, transparent 70%, transparent 100%);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}

.HeroPage {
  height: 100%;
  margin: 0 auto;
  position: relative;
  width: 1200px;
  z-index: 10;
}

.HeroContent {
  bottom: 170px;
  font-size: 1rem;
  position: absolute;
  width: 55%;
}
.HeroContent-nowPlaying {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}
.HeroContent-heading {
  color: white;
  font-size: 4.5em;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
}
.HeroContent-series {
  padding-top: 10px;
}
.HeroContent-schedule {
  color: white;
  font-size: .8em;
  font-weight: bold;
  margin-top: 20px;
}
.HeroContent-logo {
  vertical-align: middle;
  margin-right: 5px;
}
.HeroContent-watchNow {
  display: inline-block;
  margin-bottom: 10px;
}
.HeroContent-playIcon {
  fill: white;
  margin-right: 10px;
}
