@import 'fonts.css';
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: 'comfortaa';
  font-weight: 400;
}
/* container */
.container{
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  min-height: 40px;
  /* border: 1px solid red; */
}
/* wrapp */
.wrapp{
  width: 100%;
  min-height: 100vh;
  background: #040d1f;
  color: #ffffff;
}
/* banner */
.banner{
  width: 100%;
  min-height: 50px;
  background: linear-gradient(90.09deg, #3800AF 0%, #BF7204 97.52%, #C27500 100%, #C27500 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  padding: 20px 15px;
}
.banner .icon-lenta{
  font-size: 50px;
}
.banner p{
  max-width: 170px;
  font-size: 16px;
  line-height: 18px;
  margin-left: 24px;
}

/* icons */
*::before,
*::after{
  font-family: 'icons';
}
.icon-lenta::before{
  content: '\f008';
  font-weight: 300;
}
.icon-play::before,
.icon-play::after{
  font-weight: 900;
  position: absolute;
  color: #ffffff;
}
.icon-play::before{
  content: '\f04b';
}
.icon-play::after{
  content: '\10f04b';
  opacity: 0.5;
}


/* navbar */
.navbar{
  width: 100%;
  min-height: 60px;
  background: rgba(1, 3, 5, 0.8);
  position: sticky;
  top: 0;
  backdrop-filter: blur(5px);
  z-index: 30;
}
.navbar__nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar__nav--logo{
  display: flex;
  align-items: flex-end;
  padding: 20px 0;
}
.navbar__nav--logo img{
  width: 103px;
  object-fit: contain;
}
.navbar__nav--logo span{
  line-height: 14px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-left: 5px;
}
.navbar__nav--list{
  display: flex;
}
.navbar__nav--list a{
  margin: 0 9px;
  padding: 42px 6px;
  display: inline-flex;
  
  font-family: 'montserrat';
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;

  color: #FFFFFF;
  position: relative;
}
.navbar__nav--list a::before{
  width: 100%;
  height: 3px;
  background: #ED8E00;
  content: '';
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 7px 7px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.navbar__nav--list a:hover{
  color: #ED8E00;
}
.navbar__nav--list a:hover::before{
  transform: scaleX(1);
}
.navbar__nav--btn{
  width: 40px;
  height: 40px;
  border: 3px solid #ED8E00;
  background: transparent;
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.navbar__nav--btn span{
  width: 30px;
  height: 4px;
  background: #ED8E00;
  transition: width 0.3s;
}
.navbar__nav--btn::before,
.navbar__nav--btn::after{
  width: 30px;
  height: 4px;
  background: #ED8E00;
  position: absolute;
  content: '';
  transition: transform 0.3s, top 0.3s, bottom 0.3s;
}
.navbar__nav--btn::before{
  top: 6px;
}
.navbar__nav--btn::after{
  bottom: 6px;
}
.navbar__nav--btn:hover:before{
  transform: rotate(45deg);
  top: 15px;
}
.navbar__nav--btn:hover::after{
  transform: rotate(-45deg);
  bottom: 15px;
}
.navbar__nav--btn:hover span{
  width: 0;
}
/* header */
.header{
  width: 100%;
  height: 640px;
  background: green;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.header::before{
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  background: rgba(7, 15, 25, 0.75);
  top: 0;
  left: 0;
}
.header__bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
}
.header__content{
  position: absolute;
}
.header__content h1{
  font-size: 64px;
  line-height: 65px;
  font-family: 'montserrat';
  font-weight: 700;
}
.header__content p{
  max-width: 570px;
  margin: 30px 0 50px;
  text-align: justify;
  font-family: 'montserrat';
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5 ;
  overflow: hidden;
}
.header__content--btn{
  display: flex;
  gap: 30px;
}
.vue-btn{
  background: #F18128;
  border-radius: 4px;
  color: #000000;
  min-width: 166px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 17px;
  font-size: 14px;
  line-height: 11px;
  font-family: 'roboto';
  font-weight: 500;
  transition: background 0.3s color 0.3s;
}
.vue-btn:hover{
  color: #ffffff;
  background: #040d1f;
}
/* films */
.films{
  width: 100%;
  padding: 60px 0 77px;
}
.films__content{
  width: 100%;
  /* border: 1px solid yellow; */
  min-height: 40px;
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.films-card{
  width: 23pp;
  height: 370px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.films-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.films-card__link{
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(180deg, rgba(241, 129, 40, 0.35) 0%, rgba(0, 0, 0, 0.71) 51.04%, rgba(7, 15, 25, 0.8) 100%);
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 15px;
  color: #ffffff;
}
.films-card__link .icon-play{
  width: 40px;
  height: 46px;
  font-size: 40px;
  margin-top: 36px;
  transition: transform 0.3s;
}
.films-card__link p{
  font-family: 'roboto';
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  margin-top: 12px;
}
.films-card__link h3{
  font-size: 22px;
  line-height: 27px;
  font-weight: 400;
  font-family: 'montserrat';
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.time{
  border: 2px solid #ffffff;
  padding: 7px 27px;
  border-radius: 9px;
  font-weight: 400;
  font-family: 'montserrat';
  font-size: 14px;
  line-height: 10px;
  background: rgba(7, 15, 25, 0.2);
  margin: 12px 0 31px;
  transition: transform 0.3s;
}
.films-card:hover .icon-play{
  transform: scale(2) translateY(15px);
}
.films-card:hover .time{
  transform: scale(0);
}
/* title */
.title a{
  text-transform: capitalize;
  font-size: 36px;
  line-height: 32px;
  padding-bottom: 10px;
  border-bottom: 2px solid #F18128;
  color: #F18128;
  font-weight: 400;
  display: inline-flex;
}
.films-card{
  width: 23%;
  height: 370px;
  border-radius: 6px;
  background: orangered;
}
.premier{
  width: 100%;
  min-height: 500px;
  position: relative;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.premier::before{
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  background: linear-gradient(90deg, #DEF7FF 0%, #F4FCFF 45.64%, rgba(255, 255, 255, 0) 100.72%);
  z-index: 1;
}
.premier__vidio{
  width: 60%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  display: flex;
  right: 0;
}
.premier__content{
  z-index: 5;
  position: relative;
  left: 1px;
}
.premier__content--img{
  width: 40%;
}
.premier__content p{
  color: #000000;
  max-width: 558px;
  font-size: 18px;
  line-height: 27px;
  margin: 51px 0 55px;
  font-weight: 400;
  text-align: justify;
}
.collections{
  width: 100%;
  padding: 61px 0 63px;
}
.collections__content{
  margin-top: 51px;
  /* border: 1px solid green; */
  min-height: 40px;
  display: flex;
  justify-content: center;
  gap: 3%;
  flex-wrap: wrap;
}
.collections-card{
  width: 31%;
  height: 200px;
  background: orange;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.collections-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
}
.collections-card__link{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(270deg, rgba(7, 15, 25, 0.56) 0%, rgba(49,114, 9, 0.56) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.collections-card__link::before,
.collections-card__link::after{
  width: 20px;
  height: 90%;
  position: absolute;
  content:'';
  background: url('../images/lenta.png')
  no-repeat center center / cover;
  transition: transform 0.3s, left 0.3s;
}
.collections-card__link::after{
  right: 7px;
}
.collections-card__link::before{
  left: 7px;
}

.collections-card__link .icon-play{
  width: 40px;
  height: 46px;
  font-size: 40px;
}
.collections-card__link h3{
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #ffffff;
  transition: transform 0.3s;
}
.collections-card:hover .collections-card__link::after{
  transform: scale(1.5);
  right: -30px;
}
.collections-card:hover .collections-card__link::before{
  transform: scale(1.5);
  left: -30px;
}
.collections-card:hover .collections-card__link h3{
  transform: scale(1.5);
}
/* serials */
.serials{
  width: 100%;
  padding-bottom: 63px;
}
.serials__content{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, auto);
  margin-top: 50px;
  grid-gap: 30px;
}
.serials-card{
  background: orangered;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  min-height: 200px;
}
.serials-card:first-of-type{
  grid-column: 1 / span 4;
  grid-row: 1 / span 2;
}
.serials-card:nth-of-type(2){
  grid-column: 1 / span 2;
  grid-row: 3 / span 2;
}
.serials-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
}
.serials-card__contnent{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(95.68deg, rgba(35, 35, 35, 0.8) 10.86%, rgba(11, 11, 11, 0.6) 110.86%);
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.serials-card__content--link{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.serials-card__content--link .icon-play{
  width: 40px;
  height: 46px;
  font-size: 40px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}
.serials-card__content--link h3{
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  transition: 0.3s;
}
.serials-card:first-of-type .serials-card__content--link .icon-play{
  display: none;
}
.serials-card:first-of-type .serials-card__contnent--link h3{
  font-size: 24px;
  line-height: 26px;
}
.serials-card__content--text{
  display: none;
}
.serials-card:first-of-type .serials-card__content--text{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.serials-card__content--text p{
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin: 27px 0 30px;
  text-align: center;
}
.serials-card{
  transition: transform 0.3s;
}
.serials-card:hover .icon-play{
  transform: scale(2) translateY(15px);
}
.serials-card:hover h3{
  transform: scale(0);
}
.card__1:hover h3{
  transform: scale(1);
}

.footer{
  width: 100%;
  /* max-width: 1440px; */
  height: 80px;

  background: linear-gradient(90deg, #FF8C30 0%, #9F4700 100%);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.footer__center{
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1118px;
}
.footer__app{
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 264px;
  min-height: 32px;
}
.footer__title p{
  font-family: 'Comfortaa';
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}
.footer__title{
  display: flex;
  align-items: center;
}

@media (max-width: 992px){
  .films-card{
    width: 48%;
    margin-bottom: 30px;
  }
  .collections-card{
    width: 48%;
    margin-bottom: 30px;
  }
  .serials__content{
    grid-template-columns: repeat(2, auto);
  }
  .serials-card:first-of-type{
    grid-column-end: span 2;
  }
  .serials-card:nth-of-type(2){
    grid-row: 5 / span 2;
  }
}
@media (max-width: 768px){
  .serials-card:first-of-type,
  .serials-card:nth-of-type(2){
    grid-row: unset;
    grid-column: unset;
  }
  .serials-card:first-of-type .serials-card__content--text{
    display: none;
  }
  .serials-card:first-of-type .serials-card__content--link ,.icon-play{
    display: flex;
  }
  .serials-card:first-of-type .serials-card__content--link h3{
    font-size: 24px;
    line-height: 26px;
  }
  
  .header__content{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header__content h1{
    font-size: 50px;
    line-height: 50px;
    
  }
  .header{
    height: 500px;
  }
  .collections-card{
    width: 100%;
  }
  .footer__center{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer__title{
    margin-top: 15px;
  }
}
@media (max-width: 576px){
  .serials__content{
    grid-template-columns: repeat(1, auto);
  }
  .navbar__nav--list{
    display: none;
  }
  .navbar__nav--btn{
    display: flex;
  }
  .premier::before{
    background: linear-gradient(0deg, #DEF7FF 0%, #F4FCFF 45.64%, rgba(255, 255, 255, 0) 100.72%);
  }
  .premier__vidio{
    width: 100%;
    height: 300px;
    top: 0;
  }
  .premier{
    align-items: flex-end;
    padding: 40px 0;
  }
  .premier__content p{
    margin: 15px 0;
  }
  .premier__content{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px){
  .header__content--btn{
    flex-direction: column;
    gap: 15px;
  }
  .header__content h1{
    font-size: 40px;
    line-height: 40px;
  }
  .vue-btn{
    padding: 15px;
  }
}







