*{
  margin: 0;
  padding: 0;
  font-family: 'poppins', sans-serif;
  box-sizing: border-box;

}

body{
  background: #000000;
  color: #fff;
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

.header{
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-around;
}

.header img{
  width: 200px;
  height: 100px;
}

.header nav a{
  color: #fff;
  font-size: 1.4rem;
  padding: 1.1rem 1.5rem;
  margin: 1.3rem;
  text-decoration: none;
  border-radius: 0.6rem;
}


/*block button anim*/
nav .block{
  position: relative;
  margin: 30rem auto 0;
  width: 25rem;
  height: 25rem;
  background: linear-gradient(0deg, #000, #272727);
}

.block:before, .block:after {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, 
    #0000ff, #2f9c76,#ffff00, #ff0000);
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: steam 20s linear infinite;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.block:after {
  filter: blur(50px);
}
.block {
  position: relative;
  margin: 30rem auto 0;
  width: 25rem;
  height: 25rem;
  background: linear-gradient(0deg, #000, #272727);
}

.block:before, .block:after {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, 
    #0000ff, #2f9c76,#ffff00, #ff0000);
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: steam 20s linear infinite;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.block:after {
  filter: blur(50px);
}

/*block1 button anim*/
nav .block1{
  position: relative;
  margin: 30rem auto 0;
  width: 25rem;
  height: 25rem;
  background: linear-gradient(0deg, #000, #272727);
}

.block1:before, .block1:after {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  background: linear-gradient(45deg, #191517, #26262e, #030503,#0f0f06, #696868, #8c898b, 
  #bebec0, #656766,#292525, #000000);
 background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: steam 20s linear infinite;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.block1:after {
  filter: blur(50px);
}
.block1 {
  position: relative;
  margin: 30rem auto 0;
  width: 25rem;
  height: 25rem;
  background: linear-gradient(0deg, #000, #272727);
}

.block1:before, .block1:after {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  background: linear-gradient(45deg, #191517, #26262e, #030503,#0f0f06, #696868, #8c898b, 
    #bebec0, #656766,#000000, #000000);
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: steam 20s linear infinite;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.block1:after {
  filter: blur(50px);
}



.header .btn-reg a{
  color: #fff;
  font-size: 1.6rem;
  padding: 1.1rem 1.5rem;
  margin: 1.3rem;
  text-decoration: none;
  border-radius: 0.6rem;
}

/*section img back and titles*/
.banner{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner img{
  width: 2000px;
  height: 550px;
  filter: brightness(35%);
  object-fit: cover;
}

.banner .box{
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner .box .heading{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.box .heading h2{
  font-size: 5.6rem;
}
.box .heading h4{
  font-size: 2.6rem;
}
.box .heading p{
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}

.banner .box .search{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.banner .box .search input{
  height:45px; 
  font-size:2rem;
  padding: 1.2rem;
  border-radius: 0.6rem;
}

/*design "Try 30 days FREE!"*/
.banner .box .search a{
  font-size: 3rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  position: relative;
}
a::before {
  content: '';
  background-color: hsl(0, 0%, 0%);
  position: absolute;
  left: 0;
  bottom: 1rem;
  width: 100%;
  height: 0.8rem;
  z-index: -1;
  transition: all .3s ease-in-out;
}

a:hover::before {
  bottom: 0;
  height: 100%;
}

hr {
  border: 1rem solid rgb(53, 55, 53);
  border-radius: 0.5rem;
}

.part1{
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3rem 3rem;
  margin: 2rem 2rem;
  
}

/*Unlimited word in home page*/
.heading span{
  color: red;
}

.part1 img{
  width: 500px;
  height: 400px;
}


.part1 h1{
  font-size: 3.2rem;
  padding-bottom: 2.5rem;
}
.part1 p{
  font-size: 2rem;
}

.part2{
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3rem 3rem;
  margin: 2rem 2rem;
}

.part2 img{
  width: 500px;
  height: 400px;
}


.part2 h1{
  font-size: 3.2rem;
  padding-bottom: 2.5rem;
}
.part2 p{
  font-size: 2rem;
}

.part3{
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3rem 3rem;
  margin: 2rem 2rem;
}

.part3 img{
  width: 500px;
  height: 400px;
}


.part3 h1{
  font-size: 3.2rem;
  padding-bottom: 2.5rem;
}
.part3 p{
  font-size: 2rem;
}


/*CSS Q&A Page*/

.banner-QA{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-QA img{
  width: 2000px;
  height: 180px;
  filter: brightness(35%);
  object-fit: cover;
}

.banner-QA .box-QA{
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-QA .box-QA .heading-QA{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.box-QA .heading-QA h2{
  font-size: 3.6rem;
}

.accordion-accordion-flush{
  margin: 5rem;
  margin-top: 10rem;
  margin-bottom: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.accordion-button{
  padding: 0.7rem 0.8rem;
  border-radius: 0.5rem;
  background-color: white;
}

svg{
  width: 2.9rem;
  height: 2.2rem;
}
.accordion-body{
  font-size: 1.6rem;
}

.accordion-back{
  background-color: #000;
}

/*CSS Services Page*/


.banner-Service{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-Service img{
  width: 2000px;
  height: 180px;
  filter: brightness(35%);
  object-fit: cover;
}

.banner-Service .box-Service{
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-Service .box-Service .heading-Service{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.box-Service .heading-Services h2{
  font-size: 3.6rem;
}

.service-card{
  display: flex;
  justify-content: space-between;
  padding: 10rem 5rem;
}

.service-card .cards{
  border: 0.5rem solid rgba(114, 110, 110, 0.582);
  padding: 3rem;
  margin: 0rem 1rem;
  width: 100%;
}

.cards h2{
  font-size: 2.5rem;
}
.cards p{
  font-size: 1.5rem;
  padding-top: 1.3rem;

}

/*svg icon*/
.svg{
  width: 7rem;
  height: 7rem;
  margin-left: 13rem;
  margin-bottom: 3.2rem;
}
.svg:hover{
  color: red;
}

.service-watch{  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem;
  gap: 2rem;
}
.service-watch h2{
  font-size: 4rem;
}
.service-watch p{
  font-size: 1.5rem;
}

.service-pic{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem;
  gap: 2rem;
}
.service-pic h1{
  font-size: 4rem;
}
/*CSS Movies Page*/

.banner-about{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-about img{
  width: 2000px;
  height: 180px;
  filter: brightness(35%);
  object-fit: cover;
}

.banner-about .box-about{
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-about .box-about .heading-about{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.box-about .heading-about h2{
  font-size: 3.6rem;
}


.top-movies-slide{
  display: flex;
  flex-wrap: wrap;
}

.hero-wrapper h1{
  display: flex;
  justify-content: center;
  padding-top: 3rem;
}

.movie-item img{
  width: 200px;
  height: 200px;
  border-radius: 1.6rem;
}
.movie-item img:hover{
  transform: scale(1.1);
  box-shadow: 0.5px 0.5px 0.8px lightblue;
}

.movie-infos{
  display: flex;
}
.movie-info{
  padding: 0.7rem;
  color: #34ff01;
  font-size: 1.3rem;
}
.movie-item-title{
  font-size: 1.9rem;
  padding-top: 2rem;
  text-transform: uppercase;
}


/*CSS Pricing Page*/

.banner-Pricing{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-Pricing img{
  width: 2000px;
  height: 180px;
  filter: brightness(35%);
  object-fit: cover;
}

.banner-Pricing .box-Pricing{
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-Pricing .box-Pricing .heading-Pricing{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.box-Pricing .heading-Pricing h2{
  font-size: 3.6rem;
}

.box-Services{
  padding: 17rem 9rem;
}

.wrapper{
  max-width: 1090px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wrapper .table{
  background: #fff;
  width: calc(33% - 2rem);
  padding: 3rem 3rem;
  position: relative;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  text-align: center;
}
.table .price-section{
  display: flex;
  justify-content: center;
}
.table .price-area{
  height: 120px;
  width: 120px;
  border-radius: 50%;
  padding: 0.5rem;
}

.aj_p{
  text-align: center;
}

p.aj_des {
  color: grey;
  padding-bottom: 3rem;
  font-size: 1.4rem;
}

.table.premium {
  margin: -2rem;
}

.premium_all {
  padding-top: 2.2rem;
}

.price-area .inner-area{
  height: 100%;
  width: 100%;
  line-height: 117px;
  text-align: center;
  color: #fff;
  position: relative;
}

.price-area .inner-area .text{
  font-size: 2.5rem;
  font-weight: 400;
  position: absolute;
  top: -1rem;
  left: 0.5rem;
}

.price-area .inner-area .price{
  font-size: 4.5rem;
  font-weight: 500;
  margin-left: 1.6rem;
}

.table .package-name{
  width: 100%;
  height: 2px;
  margin :3.5rem 0;
  position: relative;
}

.table .features li{
  margin-bottom: 1.5rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.features li .list-name{
  font-size: 1.7rem;
  font-weight: 400;
}

.features li .icon{
  font-size: 1.5rem;
}

.features li .icon.check{
  color: #2db94d;
}

.features li .icon.cross{
  color: #cd3241;
}

.table .btn{
  width: 100%;
  display: flex;
  justify-content: center;
}

.table .btn button{
  width: 80%;
  height: 50px;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  border: none;
  outline: none;
  border-radius: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.table .btn button:hover{
  border-radius: 0.5rem;
}

.basic ::selection,
.basic .price-area,
.basic .inner-area,
.basic .head_tab h2{
  color:red;
}

.basic .btn button{
  background: red;
  color: #fff;
  margin-top: -7.5rem;
}

.basic .btn button:hover{
  background: rgba(240, 101,36);
  color: #fff;
}

.premium ::selection,
.premium .price-area,
.premium .inner-area,
.premium .head_tab h2{
  color:#ba24f0;
}

.premium .btn button{
  background: #ba24f0;
  color: #fff;
  margin-top: -7.5rem;
}

.premium .btn button:hover{
  background: rgba(240, 101,36);
  color: #fff;
}

.ultimate ::selection,
.ultimate .price-area,
.ultimate .inner-area,
.ultimate .head_tab h2{
  color:#f5b55a;
}

.ultimate .btn button{
  background: #f5b55a;
  color: #fff;
  margin-top: -7.5rem;
}

.ultimate .btn button:hover{
  background: rgba(240, 101,36);
  color: #fff;
}

@media (max-width:756px){
  .wrapper .table{
    width: 100%;
  }

  .table.premium{
    margin: 4rem 0rem;
  }
  .table.ultimate{
    margin: 0rem;
  }
}

::selection{
  color:#fff;
}

.table .ribbon{
  width: 150px;
  height: 150px;
  position: absolute;
  top: -1rem;
  left: -1rem;
  overflow: hidden;
}

.table .ribbon::before,
table .ribbon::after{
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  border: 7px solid #ba24f0;
  border-top-color: transparent;
  border-left-color: transparent;
}

.table .ribbon::before{
  top: 0rem;
  right: 1.5rem;
}

.table .ribbon::after{
  bottom: 1.5rem;
  left: 0rem;
}

.table .ribbon span{
  position: absolute;
  top:3rem;
  right: 0;
  transform: rotate(-45deg);
  width: 200px;
  background: #ba24f0;
  padding: 1rem 0;
  color: #fff;
  text-align: center;
  font-size: 1.7rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.12);
}

/*SCROLLBAR*/
/* width */
::-webkit-scrollbar {
  width: 1.4rem;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.5rem grey; 
  border-radius: 1rem;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: red; 
  border-radius: 1rem;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}

/* REGISTER */


.container h1{
  margin-top: 3.8rem;
  padding-bottom: 8rem;
  display: flex;
  justify-content: center;
  font-size: 4rem;
  width: 100%;
  height: 100%;
}

.signInPage{
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-bottom: 9rem;
}

.container label{
  font-size: 1.6rem;
  padding: 0.5rem;
}

.container .labelEmail{
  padding-right: 3.6rem;
}

.container input{
  font-size: 1rem;
  padding: 0.5rem;
  font-weight: bold;
}

.container .registerP{
  font-size: 1.3rem;
  padding: 0.5rem;
}

.container button{
  font-size: 1.8rem;
  padding: 0.2rem 2.5rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.container button:hover{
  color: white;
  background-color: red;
}

/* Add a blue text color to links */
a {
  color: dodgerblue;
}


#hamburger-icon  {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu  {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-menu{
  display: none;
}

.mobile-menu .block1 .block {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  height: calc(100vh - 50px);
  width: 100%;
}

.mobile-menu a{ 
  color: #fff;
  font-size: 2rem;
  padding: 1.4rem 3.5rem;
  margin: 1.3rem;
  text-decoration: none;
  border-radius: 0.6rem;
}

nav .block {
  position: relative;
  margin: 5rem auto 0;
  width: 18rem;
  height: 6rem;
  background: linear-gradient(0deg, #000, #272727);
}

nav .block1{
  
  position: relative;
  margin: 5rem auto 0;
  width: 18rem;
  height: 6rem;
  background: linear-gradient(0deg, #000, #272727);
}

nav .block1:last-child{
  margin-bottom: 20rem;
}



