* {
  box-sizing: border-box;
}

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

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section {
  padding: 100px 0;
}

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

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

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

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

.menu__btn{
  display: none;
}

.menu__list {
  display: flex;
  justify-content: center;
}

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

.menu__list-link {
  font-size: 36px;
  line-height: 42px;
}

.menu__list-link:hover,
.menu__list-link--active {
  text-decoration-line: underline;
  color: #85ccdc;
}

.logo {
  padding-top: 17vh;
}

.about__inner {
  display: flex;
}

.about__info {
  width: 375px;
  margin-right: 50px;
  flex: none;
}

.about__info-item {
  color: #e5e5e5;
}

.about__info-item:not(:last-child) {
  margin-bottom: 25px;
}

.about__info-item span {
  display: block;
}

.about__text p:not(:last-child) {
  margin-bottom: 25px;
}

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

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

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

.video__btn {
  padding-left: 112px;
  position: relative;
  margin-right: 230px;
}

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

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

.seasons__item {
  height: 250px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.seasons__item:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 14, 14, 0.8);
}

.seasons__link {
  z-index: 2;
  font-size: 36px;
  line-height: 42px;
  padding: 12px 78px 11px;
  background: #0e0e0e;
  opacity: 0;
  transition: all 0.3s;
}

.heroes__inner {
  display: flex;
  justify-content: space-between;
}

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

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

.slick-prev {
  left: 38px;
}

.slick-next {
  right: 38px;
}

.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__text p {
  margin-bottom: 15px;
}

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

/* season 1 */

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

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

.page-logo {
  position: absolute;
  left: 0;
}

.season-info {
  position: absolute;
  max-width: 1250px;
  display: flex;
  padding: 44px 47px 64px 35px;
  background-color: #0e0e0e;
  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: 51px;
}

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

.season-info__text p {
  margin-bottom: 15px;
}
/* /season 1 */

/* start media */

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

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

@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) {
  .season__item {
    height: 340px;
  }
}

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

@media (max-width: 768px) {
  .about__inner {
    display: block;
  }
  .about__text {
    margin-top: 20px;
  }
  .section__about {
    padding: 50px 0;
  }
  .section__title {
    margin-bottom: 50px;
    font-size: 28px;
    line-height: 36px;
  }
  .body {
    font-size: 16px;
    line-height: 19px;
  }
  .video__text {
    font-size: 48px;
    line-height: 56px;
  }
  .video__text span {
    padding-right: 200px;
  }
  .video__btn {
    margin-right: 0;
    padding-left: 62px;
  }
  .video__btn::before {
    width: 50px;
    height: 50px;
    background-size: cover;
    top: -16px;
  }
  .seasons__inner {
    grid-gap: 80px 35px;
  }
  .heroes__name{
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 25px;
  }
  .season-info{
    display: block;
    padding: 30px 10px 0 10px;
  }
  .season-info__num {
    text-align: left;
    font-size: 50px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  .season-info__num span{
    font-size: 25px;
    line-height: 32px;
  }
}

@media (max-width: 640px) {
  .menu{
    text-align: center;
    padding: 0;
    background: linear-gradient( 180deg, #111213 0%, #111213 10%, rgba(32, 31, 33, 0) 86.33% );  
  }
  .menu__list {
    display: block;
    transform: translateY(-130%);
    transition: all .3s;
  }
  .menu__list.menu__list--active{
    transform: translateY(0%);
    padding: 100px 0 50px;
    background-color: #0e0e0e;
  }
  .menu__list-link{
    display: block;
    padding: 10px 0;
  }
  .logo {
    padding-top: 21vh;
  }
  .menu__btn{
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    padding: 0;
  }

  .menu__btn span{
    background-color: #fff; 
    height: 3px;
    width: 100%;
  }

  .menu__btn::after,
  .menu__btn::before{
    content: '';
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
  }

  .menu__btn::before{
    top: 0;
    left: 0;    
  }

  .menu__btn::after{
    bottom: 0;
    left: 0;
  }

  .page-logo{
    display: block;
    z-index: 10;
    top: 22px;
  }
  .page-header{
    height: 160vh;
  }
}

@media (max-width: 414px){
  .season__item {
    height: 203px;
  }
  .page-header{
    height: 200vh;
  }
}

/* end media */
