* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::after,
*::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  background-color: #0e0e0e;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.section-page {
  padding: 100px 0;
}

.title {
  text-align: center;
  font-size: 36px;
  line-height: 42px;
  font-weight: 400;
  margin-bottom: 100px;
}

.header {
  background-image: url(../images/header-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  background-position: center 50px;
  text-align: center;
  position: relative;
}

.header::after {
  content: "";
  position: absolute;
  height: 70px;
  bottom: 0;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#0E0E0E), color-stop(16.53%, rgba(17, 17, 17, 0.850295)), to(rgba(32, 31, 33, 0)));
  background: linear-gradient(180deg, #0E0E0E 0%, rgba(17, 17, 17, 0.850295) 16.53%, rgba(32, 31, 33, 0) 100%);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.menu {
  padding: 50px 0 58px;
  background: -webkit-gradient(linear, left top, left bottom, from(#111213), color-stop(43.62%, #111213), color-stop(86.33%, rgba(32, 31, 33, 0)));
  background: linear-gradient(180deg, #111213 0%, #111213 43.62%, rgba(32, 31, 33, 0) 86.33%);
}

.menu__btn {
  display: none;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.menu__list-item {
  padding: 0 13px;
}

.menu__list-link {
  font-size: 36px;
  line-height: 42px;
  -webkit-transition: all .5s;
  transition: all .5s;
  background-color: transparent;
}

.menu__list-link--active {
  color: #85CCDC;
}

.menu__list-link:hover {
  color: #85CCDC;
}

.menu__list-link:active {
  opacity: 0.6;
}

.menu__list-link::after {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  background-color: #85CCDC;
  -webkit-transition: width .5s;
  transition: width .5s;
}

.menu__list-link:hover::after {
  color: #85CCDC;
  width: 100%;
  -webkit-transition: width .5s;
  transition: width .5s;
}

.menu .logo {
  padding-top: 17vh;
}

.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about__info {
  width: 370px;
  margin-right: 50px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.about__info-item {
  color: #E5E5E5;
  margin-bottom: 25px;
}

.about__info-item span {
  display: block;
}

.about__content-text {
  margin-bottom: 25px;
}

.video {
  background-image: url(../images/video-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100vh;
  text-align: right;
}

.video__text {
  font-style: italic;
  font-weight: 300;
  font-size: 72px;
  line-height: 84px;
  color: #85CCDC;
  padding-top: 35vh;
  margin-bottom: 40px;
}

.video__text span {
  padding-right: 285px;
  display: block;
}

.video__link {
  margin-right: 240px;
  padding-left: 112px;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.video__link::before {
  content: "";
  position: absolute;
  background-image: url(../images/icon-youtube.svg);
  width: 100px;
  height: 100px;
  top: -40px;
  left: 0;
}

.video__link:hover {
  color: #cccccc;
  text-shadow: 2px 2px 10px red;
}

.video__link:active {
  opacity: .6;
}

.seasons__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(284px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(284px, 1fr));
  grid-gap: 100px 75px;
  counter-reset: number;
  padding-top: 50px;
}

.seasons__item {
  width: 285px;
  height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.seasons__item::before {
  content: "0" counter(number);
  counter-increment: number;
  position: absolute;
  font-weight: bold;
  font-size: 96px;
  line-height: 112px;
  color: #600E09;
  left: 0;
  top: -72px;
  z-index: -1;
}

.seasons__item:nth-child(n+10)::before {
  content: counter(number);
}

.seasons__item:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 14, 14, 0.8);
}

.seasons__item:hover .seasons__link {
  opacity: 1;
}

.seasons__link {
  font-size: 36px;
  line-height: 42px;
  color: #fff;
  padding: 12px 78px 11px;
  background-color: #0E0E0E;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.heroes__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.heroes__slider-img {
  max-width: 775px;
}

.heroes__slider-text {
  max-width: 350px;
}

.heroes__name {
  font-style: italic;
  font-weight: 300;
  font-size: 72px;
  line-height: 84px;
  color: #85CCDC;
  margin-bottom: 44px;
}

.heroes__info {
  margin-bottom: 20px;
}

.slick-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none;
  background-color: transparent;
  z-index: 5;
  cursor: pointer;
  outline: none;
}

.slick-btn:active {
  opacity: 0.6;
}

.slick-prev {
  left: 38px;
}

.slick-next {
  right: 38px;
}

.copy {
  text-align: center;
  padding: 15px 0;
}

.menu__container {
  max-width: 1385px;
  margin: 0 auto;
  position: relative;
}

.page-logo {
  position: absolute;
  left: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.page-logo:hover {
  opacity: .8;
}

.page-logo:active {
  opacity: .6;
}

.page-header {
  background-image: url(../images/season1-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 90vh;
  position: relative;
}

.season-info {
  position: absolute;
  max-width: 1385px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #0e0e0e;
  padding: 44px 47px 44px 35px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.season-info__num {
  font-weight: bold;
  font-size: 96px;
  line-height: 56px;
  text-align: center;
  margin-right: 50px;
}

.season-info__num span {
  display: block;
  font-weight: bold;
  font-size: 36px;
  line-height: 42px;
}

.season-info__content-text {
  margin-bottom: 20px;
}

@media (max-width: 1420px) {
  .page-logo {
    left: 10px;
    top: -6px;
  }
}

@media (max-width: 1336px) {
  .page-header {
    height: 120vh;
  }
  .logo__img {
    width: 50%;
  }
  .menu__list-link {
    font-size: 24px;
    line-height: 32px;
  }
  .about__info {
    width: 250px;
  }
}

@media (max-width: 1200px) {
  .heroes__inner {
    display: block;
  }
  .heroes__slider-text {
    max-width: 100%;
    padding-top: 50px;
  }
  .heroes__slider-img {
    max-width: 100%;
  }
}

@media (max-width: 1088px) {
  .seasons__item {
    height: 340px;
  }
}

@media (max-width: 992px) {
  .page-logo {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 19px;
  }
  .about__inner {
    display: block;
  }
  .section-page {
    padding: 50px 0;
  }
  .title {
    margin-bottom: 50px;
    line-height: 36px;
    font-size: 28px;
  }
  .video__text {
    font-size: 50px;
    line-height: 60px;
    padding-top: 40vh;
  }
  .video__text span {
    padding-right: 150px;
  }
  .video__link {
    margin-right: 0;
    padding-left: 60px;
  }
  .video__link::before {
    background-size: cover;
    width: 50px;
    height: 50px;
    top: -15px;
  }
  .season-info {
    display: block;
    padding: 30px 10px 0 10px;
  }
  .season-info__num {
    text-align: left;
    font-size: 50px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .season-info__num span {
    font-size: 25px;
  }
  .season__inner {
    grid-gap: 80px 35px;
  }
  .heroes__name {
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 25px;
  }
}

@media (max-width: 640px) {
  .menu__btn {
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 10px;
  }
  .menu__list {
    display: block;
    text-align: center;
  }
  .menu__list-link {
    display: inline-block;
    padding: 10px 0;
  }
  .logo {
    padding-top: 21vh;
  }
}

@media (max-width: 414px) {
  .seasons__item {
    height: 203px;
  }
}
/*# sourceMappingURL=style.css.map */