@font-face {
  font-family: "ProximaNova-Black";
  src: local("ProximaNova-Black"),
    url("https://nomail.com.ua/files/eot/317d5480a545edf076e02aacd21f434f.eot?#iefix")
      format("embedded-opentype"),
    url("https://nomail.com.ua/files/woff/317d5480a545edf076e02aacd21f434f.woff")
      format("woff"),
    url("https://nomail.com.ua/files/woff2/317d5480a545edf076e02aacd21f434f.woff2")
      format("woff2");
}
*,
*:after,
*:before {
  box-sizing: border-box;
}
body {
  background: #070506 url("img/main-bg.jpg") top right -90% no-repeat;
  background-size: contain;
  background-attachment: fixed;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.header {
  display: flex;
  align-items: center;
  padding-top: 90px;
}
.header__logo {
  margin-right: 70px;
}
.nav__link {
  text-decoration: none;
  color: #fff;
  margin-right: 15px;
}
.hero__subtitle {
  display: block;
  margin-top: 78px;
  font-size: 40px;
  line-height: 100%;
  font-family: "ProximaNova-Black", sans-serif;
}
.hero__title {
  margin-top: 5px;
  font-size: 64px;
  line-height: 78px;
  font-family: "ProximaNova-Black", sans-serif;
  margin-bottom: 25px;
}
.hero__description {
  max-width: 572px;
  font-size: 18px;
  line-height: 150%;
  color: #afafaf;
}
.hero__premier {
  display: block;
  font-size: 18px;
  line-height: 150%;
  color: #b02000;
  margin-bottom: 5px;
}
.hero__date {
  display: block;
  font-size: 24px;
  line-height: 150%;
  margin-bottom: 46px;
}
.button {
  display: inline-block;
  animation-iteration-count: infinite;
}
.button-play {
  position: relative;
  border: none;
  background: linear-gradient(90deg, #fb641a 0%, #fc3309 100%);
  border-radius: 300px;
  color: #ffffff;
  padding: 25px 35px;
  padding-right: 80px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  display: inline-block;
}
.button-play:after {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  background: #fff url("img/play.svg") center no-repeat;
  border-radius: 50%;
  right: 0;
  top: 0;
}
.button-play:before {
  content: "";
  width: 81px;
  height: 81px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: absolute;
  right: -8px;
  top: -8px;
}
.episodes {
  padding: 60px 0;
}
.episodes__title {
  font-style: 18px;
  line-height: 150%;
  margin-bottom: 24px;
}
.slider {
  display: flex;
  flex-wrap: wrap;
}
.slider__item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 250px;
  min-height: 200px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 30px;
  box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  transition: all 0.2s ease;
}
.slider__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(80, 80, 80, 0.86);
  transition: all 0.2s;
}
.slider__image {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.slider__item:hover:before {
  background: rgba(64, 101, 255, 0.86);
}
.slider__rating-stars {
  opacity: 0;
}
.slider__item:hover .slider__rating-stars {
  opacity: 1;
}
.slider__rating-label {
  margin-right: 10px;
}
.slider__href {
  text-decoration: none;
  color: #fff;
}
.star {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("img/star.svg") no-repeat center;
}
.star-o {
  background: url("img/star-o.svg") no-repeat center;
}

.slider__nav--left {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent url("img/arrow-left.svg") no-repeat center;
  margin-right: 15px;
  cursor: pointer;
  outline: none;
}

.slider__nav--right {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent url("img/arrow-right.svg") no-repeat center;
  cursor: pointer;
  outline: none;
}
.slider__nav--left span,
.slider__nav--right span {
  display: none;
}
@media (max-width: 600px) {
  .hero__subtitle {
    font-size: 24px;
  }
  .hero__title {
    font-size: 36px;
    line-height: 120%;
  }
  .hero__description {
    font-size: 16px;
  }
  .header {
    flex-direction: column;
    align-items: flex-start;
  }
  .header__logo {
    margin-bottom: 30px;
  }
  .nav {
    display: flex;
    flex-direction: column;
  }
  .nav__link {
    margin-bottom: 10px;
  }
}

