/* start */
/* starting of upper part */
* {
  color: white;
  font-family: "netflix-rg", "sans-serif";
}
@font-face {
  font-family: "netflix-blk";
  src: url(./assets/NetflixSans_W_Blk.woff2);
}
@font-face {
  font-family: "netflix-md";
  src: url(./assets/NetflixSans_W_Md.woff2);
}
@font-face {
  font-family: "netflix-rg";
  src: url(./assets/NetflixSans_W_Rg.woff2);
}
body {
  padding: 0;
  margin: 0;
  width: 100%;
  background-color: black;
}
.upper-part {
  height: 700px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid rgb(47, 46, 46);
}
/* Background part */
.bg {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -10;
  transform: scale(1.2);
}
.gradient {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: -9;
}
@media (max-width: 960px) {
  .bg {
    transform: scale(1.1);
    object-position: 100% 50%;
  }
  .upper-part {
    height: 512px;
  }
}
@media (max-width: 600px) {
  .bg {
    transform: scale(1.05);
  }
}
@media (max-width: 340px) {
  .bg {
    transform: scale(1.2);
  }
}
/* End of background part */
/* select tag and sign in button */
.logo {
  width: 30%;
  transform: scale(1.05);
  padding: 5px;
  margin-right: auto;
}
.selector {
  display: flex;
  border: 1px solid grey;
  align-items: center;
  justify-content: space-between;
  width: 120px;
  height: 30px;
  border-radius: 5px;
  position: relative;
  font-family: "netflix-rg", "sans-serif";
}
select {
  background-color: hsl(0, 0%, 0%, 0.2);
  color: white;
  border: solid 1px grey;
  border: none;
  font-size: 1rem;
  width: 99%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  padding-left: 25%;
  font-family: "netflix-rg", "sans-serif";
}
.globe {
  margin: auto 10px;
  margin-top: 6px;
}
.sign-in {
  background-color: rgb(229, 9, 20);
  color: white;
  border: none;
  height: 31px;
  width: 75px;
  border-radius: 5px;
  font-weight: 600;
  justify-self: end;
  padding-top: 0px;
  padding-bottom: 0px;
  font-family: "netflix-rg", "sans-serif";
}
.sign-in:hover {
  background-color: rgb(202, 16, 25);
  cursor: pointer;
}
/* end of select tag and sign in button*/
/* upper part flex */
.nav {
  display: flex;
  width: 95%;
  height: 5rem;
  justify-content: end;
  align-items: center;
  margin: auto;

  gap: 20px;
  box-sizing: border-box;
}
@media (min-width: 1280px) {
  .nav {
    width: 75%;
  }
}
@media (max-width: 960px) {
  .nav {
    gap: 10px;

    justify-content: center;
  }
  .logo {
    width: 80px !important;
  }
  img {
    width: 100% !important;
  }
}
@media (max-width: 600px) {
  .selector {
    width: 50px;
  }
  select {
    padding-right: 50%;
  }
}
/* upper main content */
.main-content {
  color: white;
  width: auto;
  text-align: center;
  margin: 20vh auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.email {
  display: flex;
  margin: auto;
  text-align: center;
  justify-content: center;
  height: 55px;
  width: 100%;
  gap: 10px;
  margin-top: 5px;
}
.cont-h1,
.cont-h2,
.cont-h3 {
  margin: 0;
  padding: 0;
  margin-top: 10px;
  word-spacing: -2px;
}
.cont-h1 {
  font-size: 45px;
  font-family: "netflix-blk", "sans-serif";
}
.cont-h2,
.cont-h3 {
  font-family: "netflix-rg", "sans-serif";
  font-weight: 200;
}
.cont-h2 {
  font-size: 24px;
}
.cont-h3 {
  font-size: 20px;
}
.input-email {
  width: 350px;
  height: 100%;
  border-radius: 5px;
  background-color: hsl(0, 0%, 0%, 0.5);
  border: none;
  border: 1px solid grey;
  /* overflow: hidden; */
  background-color: transparent;
  position: relative;
}

.txt {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  color: white;
  caret-color: white;
  padding-top: 20px;
  padding-left: 10px;
  box-sizing: border-box;
  font-size: 14px;
  border: none;
}
.inner-txt {
  position: absolute;
  left: 10px;
  top: 33%;
  color: rgb(178, 175, 175);
  z-index: -2;
}

.btn-submit {
  background-color: rgb(229, 9, 20);
  width: 200px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  justify-content: center;
}
.submit {
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
}
.btn-submit:hover {
  background-color: rgb(202, 16, 25);
}
@media (max-width: 960px) {
  .cont-h1 {
    font-size: 32px !important;
  }
  .cont-h2,
  .cont-h3 {
    font-size: 18px !important;
  }
  .submit {
    font-size: 24px !important;
  }
}
@media (max-width: 600px) {
  .email {
    display: block;
    margin: auto;
  }
  .input-email {
    width: 90%;
    margin: 10px auto;
  }
  .btn-submit {
    margin: auto;
  }
  .main-content {
    margin: 5vh auto;
  }
  .btn-submit {
    width: 150px;
  }
  .submit {
    font-size: 18px !important;
  }
}
@media (max-width: 300px) {
  .main-content {
    margin: 0vh auto !important ;
  }
}
/* end of upper part */
/* second part starting */
.features {
  display: flex;
  padding: 4rem 0rem;
  margin: 0rem 10rem;
}
.part {
  border-bottom: 8px solid rgb(47, 46, 46);
}
.tv-image {
  position: relative;
  width: 80%;
}
.tv-image-img {
  width: 100%;
}

.video-tv {
  position: absolute;
  width: 80%;
  top: 20%;
  left: 13%;
  z-index: -1;
}

.text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tc-h1 {
  font-size: 45px;
  font-family: "netflix-blk", "sans-serif";
  margin: 0;padding: 0;
  margin-bottom: 10px;
}
.tc-h2 {
  font-weight: 200 !important;
  margin: 0;padding: 0;
  margin-bottom: 10px;
  
}
/* stranger things */
.str-txt-2 {
  order: 2;
}
.downloading {
  position: absolute;
  bottom: 8%;
  left: 20%;
  display: flex;
  background-color: black;
  flex-direction: row;
  width: 45%;
  height: 50px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid grey;
  overflow: hidden;

  align-items: center;
}
.str-txt {
  display: flex;
  flex-direction: column;
  margin: 10px;
  width: 50%;
  margin-right: auto;
  text-align: left;
}
.str-img {
  height: 100%;
  width: 20%;
}

.gif-down {
  width: 20%;
  margin-left: auto;
  margin-right: 2%;
}
/* str end */

/* start small-vid */

.small-vid {
  width: 60%;
  top: 7%;
  left: 20%;
}


/* end small-vid */
/* kid */


/* end kid */
@media  (max-width: 1280px) {
    .features {
    margin: 0rem 2rem;
  }
} 
@media (max-width: 960px) {
  .downloading {
    width: 50%;
    left: 25%;
  }

  .str.img {
    width: auto;
  }
  .str-txt {
    font-size: 15px !important;
  }

  .features {
    display: block;
    text-align: center;
    margin: 0% 5%;
  }
  .tv-image {
    width: 90%;
    margin: auto;
  }

  .tc-h1 {
    font-size: 32px !important;
  }
  .tc-h2 {
    font-size: 18px !important;
  }
}
@media (max-width: 600px) {
  .str-txt {
    font-size: 12px !important;
  }
  .downloading {
    width: 70%;
    left: 15%;
  }
}
/* end of second part */
/* third part */
.faq {
  text-align: center;
  font-family: "netflix-blk", "sans-serif";
  font-size: 48px;
 
}
.full-faq {
  background-color: #2d2d2d;
  display: flex;
  flex-direction: column;
  
}
.ques{
  height: 84px;
  padding: 1.5rem;
  
font-size: 24px !important;
display: flex;
justify-content: space-between;
align-items: center; 
border-bottom: 2px solid black;
box-sizing: border-box;
}
.all-faq{
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 82%;
margin:auto ;

}
.answer{
    font-size: 24px !important;
    padding-left:15px ;
    padding-right:15px ;
    height: 0px;
    overflow: hidden;

 
}
.bi-x-lg{
  transform: rotate(45deg);
}

.rotate{transform: rotate(90deg);}

.ques:hover{
background-color: #3e3e3e;
cursor: pointer;
}
.show{
  height: 100%;
}
@media (max-width:1280px) {
    .all-faq{
        width: 95% !important;
    }
}
@media (max-width:960px) {
  .faq{
    font-size: 32px;
  }
  .ques,.answer{
    font-size: 18px !important;
  }
}
.para{
 padding-top: 1.5rem;
  text-align: center;
  font-size: 20px !important;
}
.third-part{
  padding: 4.5rem 0rem;
  border-bottom: 8px solid rgb(47, 46, 46);
}
/* end of third part */
/* starting of fourth part */
ul{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  row-gap: 0.75rem;
  column-gap: 0.75rem;
 padding:30px 0px;
}
li{
  list-style: none;

}
a,.ques-para{
  color: rgb(195, 193, 193);
  font-size: 14px ;
}
.ques-para{
  margin-top: 30px;
}
footer{
  width: 78%;
  margin: auto;
padding: 60px 0px;
}
@media (max-width:1570px) {
  ul{
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(1fr / 5);
  }
}
@media (max-width:1280px) {
  footer{
    width: calc(100% - 4rem);
  }
  
}
@media (max-width:960px) {
  ul{
  grid-template-columns: 1fr 1fr ;
  grid-template-rows: repeat(1fr / 7);
  }
}
@media (max-width:400px) {
  ul{
  grid-template-columns: 1fr  ;
  grid-template-rows: repeat(1fr / 15);
  }
}
/* end of fourth part  */
/* end */