@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --main-heading: 2.8rem;
  --sub-heading: 1.5rem;
  --small-text: 0.9rem;
  --bg-color: #000;
  --text-color: #fff;
}

body {
  font-family: "Poppins";
  color: var(--text-color);
  background-color: var(--bg-color);
}
ul li {
  list-style: none;
}
a {
  text-decoration: underline;
  color: #fff;

}
/* utility classes  */

.heading-text{
  font-size: var(--main-heading);
  font-weight: 900;
}
.subheading-text {
  font-size: var(--sub-heading);
}
.small-text{
  font-size: var(--small-text);
}

.flex {
  display: flex;
  justify-content: center;
}
.reverse-flex {
  flex-direction: row-reverse;
}
.container {
  margin: auto;
  max-width: 1200px;
  min-height: 70vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;

}
.line-after {
  height: 8px;
  width: 100vw;
  background-color: #242424;
}
/* subscribe section  */
.subscribe {
  min-height: 120px;
  margin-top: 10px;
  line-height: 2rem;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.subscribe input[type="email"]{
  height: 7vh;
  width: 350px;
  outline: 1px solid white;
  color: var(--text-color);
  background-color: #0000005a;
  padding: 15px;
  font-size: 1rem;
  border-radius: 5px;
}
.subscribe input[type="email"]:focus{
  outline: 2px solid white;
}
.subscribe input[type="submit"]{
  height: 7vh;
  width: 200px;
  border: 2px sloid var(--text-color);
  color: var(--text-color);
  background-color: rgb(229, 9, 20);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  gap: 10px;
}
.subscribe input:hover[type="submit"]{
  background-color: rgb(210, 9, 20);
}
.subscribe p{
  font-size: 1.2rem;
}
.form{
  min-height: 70px;
  flex-wrap: wrap;
  gap: 10px;
}

/* language change button  */

.buttons{
  width: fit-content;
  justify-content: space-around;
  gap: 10px;
}
.main-lang-ctn{
  height: 34px;
  border: 1px solid var(--text-color);
  border-radius: 2px;
  width: 120px;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.lang-button{
  padding: 6px;
  justify-content: space-around;
  gap: 5px;
  align-items: center;
}
.lang-button .lang-icons img{
  filter: invert(1);
  font-size: 1.3rem;
}

.lang-dropdown-list{
  display: none;
}
.lang-dropdown-list-on{
  display: block;
  background-color: white;
  color: #000;
text-align: center;
border-radius: 2px;
width: 118px;
position: absolute;
top: 32px;
left: 0px;
}

.nav-signin-button{
  height: 34px;
  min-width: fit-content;
  padding: 5px 20px;
  background-color: rgb(229, 9, 20);
  color: var(--text-color);
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
}
.nav-signin-button:hover{
  background-color: rgb(210, 9, 20);
}



/* homepage  */
.home-page {
  margin: auto;
  max-width: 1200px;
  min-height: 90vh;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
 

}
.opacity{
  width: 100vw;
  background: url("./assests/hero-bg-large.jpg");
  background-size: cover;
  position: relative;
  position: relative;
  z-index: 0;
}
.opacity::after{
  content: "";
  margin: auto;
  width: 100vw;
  height: 100%;
  background-color: #000000b0;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.nav-bar{
  width: 100%;
  margin: 0 10px;
    justify-content: space-between;
    align-items: center;
}

.main-heading{
  height: 75vh;
  /* margin-bottom: 180px; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* main 4 countainers  */
.about-img{
  position: relative;
}
.about-text{
  width: 40vw;
}
.about-img> img{
  max-width: 600px;
}
.tv-video-1{
  position: absolute;
    top: 93px;
    right: 84px;
    max-width: 438px;
    z-index: -1;
}
.tv-video-2{
  position: absolute;
  top: 52px;
  right: 119px;
  max-width: 367px;
  z-index: -1;
}
.staranger-poster{
  width: 60px;
}
.download-gif{
  width: 50px;
}
.download-gif-text> h3{
  font-size: 1rem;
}
.download-gif-text> p{
  font-size: 1rem;
  font-weight: 400;
  color: #0071eb;
}
.downloading-gif{
  padding: 15px 8px;
  width: 310px;
  background-color: #000;
  outline: 1px solid var(--text-color);
  border-radius: 5px;
  position: absolute;
  bottom: 41px;
  left: 140px;
  justify-content: space-around;
  align-items: center;
  gap: 19px;
}

/* FaQ section */

.faq-container {
  margin: 40px auto;
  max-width: 1200px;
  /* height: 70vh; */

}
.q-container{
  width: 100%;
  margin: 2px 0 8px 0;
}
.faq-container .qa-heading {
  text-align: center;
  margin-bottom: 20px;
}
.question-ctn{
  margin: 0px 0 2px 0;
  width: 100%;  
  background-color: rgb(45,45,45);
  justify-content: space-between;
  padding: 25px;
  align-items: center;
}
img.dropdown-arrow{
  width: 41px;
  filter: invert();
  transition: 0.2s ease-in;
}
.answer{
  display: none;
  transition: 0.2s ease-in;
}
.answer-active{

  display: block;
  height: fit-content;
  width: 100%;  
  padding: 25px;  
  background-color: rgb(45,45,45);
}
.faq-container .subscribe{
  margin: 70px 0;
}
.faq-container .subscribe form{
  gap: 10px;
}
.rotated-dropdown{
  transform: rotatez(-180deg);
}

/* footer  */
.footer-continer{
  font-size: var(--small-text);
  margin: 20px auto 5px;
  max-width: 1200px;
  min-height: 50vh;
}
.footer-continer footer{
  min-height: 50vh;
  max-width: 1200px;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 20px;
}
.footer-list{
  flex-wrap: wrap;
  gap: 20px;
}
.footer-list ul li{
  margin-top: 15px;
  text-decoration: underline;
}
.footer-list ul{
  min-width: 250px;;
}
.copy-text{
  margin-bottom: 40px;
}
/* End  */
/* responsive for ipad  */
@media only screen 
and (min-device-width : 521px) 
and (max-device-width : 1024px) {
  :root {
    --main-heading: 2rem;
    --sub-heading: 1.3rem;
    --small-text: 0.8rem;
    --bg-color: #000;
    --text-color: #fff;
  }
  .container {
    text-align: center;
    margin: 40px auto;
    max-width: 100vw;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  /* subscribe section  */
  .subscribe input[type="email"]{
    height: 8vh;
    width: 50vw;
  }
  .subscribe input[type="submit"]{
    height: 8vh;
    width: 30vw;
  }
  .subscribe p{
    font-size: 1.2rem;
  }
  
  /* language change button  */
  
  .buttons{
   margin-right: 20px;
   align-items: center;
  }
  .main-lang-ctn{
    margin: 10px 10px;
    height: 34px;
    border: 1px solid var(--text-color);
    border-radius: 2px;
    width: 120px;
    text-align: center;
    position: relative;
    cursor: pointer;
  }
  .lang-button{
    padding: 6px;
    justify-content: space-around;
    gap: 5px;
    align-items: center;
  }
  .lang-button .lang-icons img{
    filter: invert(1);
    font-size: 1.3rem;
  }
  .main-lang-ctn-2{
    display: block;
  }
  
  .lang-dropdown-list{
    display: none;
  }
  .lang-dropdown-list-on{
    display: block;
    background-color: white;
    color: #000;
  text-align: center;
  border-radius: 2px;
  width: 118px;
  position: absolute;
  top: 32px;
  left: 0px;
  }

  .home-page {
    /* margin: auto 10px; */
    max-width: 100vw;
    min-height: 50vh;
  }
  .main-heading{
    margin: 0 20px;
    text-align: center;
  }
  .nav-bar{
    width: 100vw;
    margin: 0 0;
      justify-content: space-between;
      align-items: center;
  }

  .about-text{
    width: 95vw;
  }
  .about-img> img{
    max-width: 350px;
  }
  .tv-video-1{
    position: absolute;
    top: 49px;
    right: 42px;
    max-width: 262px;
      z-index: -1;
  }
  .tv-video-2{
    position: absolute;
    top: 31px;
        right: 72px;
        max-width: 212px;
    z-index: -1;
  }
  .staranger-poster{
    width: 50px;
  }
  .download-gif{
    width: 50px;
  }
  .download-gif-text> h3{
    font-size: 0.9rem;
  }
  .download-gif-text> p{
    font-size: 0.8rem;
  }
  .downloading-gif{
    padding: 10px 8px;
    width: 270px;
    bottom: 15px;
    left: 34px;
  }
  .faq-container{
    padding: 10px 0;
    margin: 0 20px;
  }
  .faq-container .subscribe{
    margin: 40px 0;
  }
  /* footer  */
.footer-continer{

  max-width: 100vw;
  padding: 20px 0;
  margin: 0 20px;
}
.footer-continer footer{
  max-width: 100vw;
gap: 10px;
}
.footer-list{
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
}
.footer-list ul{
  min-width: 150px;
}
}
/* responsive for mobile  */

@media only screen and (max-device-width : 520px) {
  :root {
    --main-heading: 2rem;
    --sub-heading: 1.3rem;
    --small-text: 0.8rem;
    --bg-color: #000;
    --text-color: #fff;
  }
  .container {
    text-align: center;
    margin: auto;
    max-width: 100vw;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  /* subscribe section  */
  .subscribe input[type="email"]{
    height: 8vh;
    width: 90vw;
  }
  .subscribe input[type="submit"]{
    height: 8vh;
    width: 90vw;
  }
  .subscribe p{
    font-size: 1.2rem;
  }
  
  /* language change button  */
  
  .buttons{
   margin-right: 20px;
  }
  .main-lang-ctn{
    display: none;
  }
  .main-lang-ctn-2{
    margin: 10px 10px;
    height: 34px;
    border: 1px solid var(--text-color);
    border-radius: 2px;
    width: 120px;
    text-align: center;
    position: relative;
    cursor: pointer;
  }
  .lang-button{
    padding: 6px;
    justify-content: space-around;
    gap: 5px;
    align-items: center;
  }
  .lang-button .lang-icons img{
    filter: invert(1);
    font-size: 1.3rem;
  }
  .main-lang-ctn-2{
    display: block;
  }
  
  .lang-dropdown-list{
    display: none;
  }
  .lang-dropdown-list-on{
    display: block;
    background-color: white;
    color: #000;
  text-align: center;
  border-radius: 2px;
  width: 118px;
  position: absolute;
  top: 32px;
  left: 0px;
  }

  .home-page {
    /* margin: auto 10px; */
    max-width: 100vw;
    min-height: 50vh;
  }
  .main-heading{
    margin: 0 20px;
    text-align: center;
  }
  .nav-bar{
    width: 100vw;
    margin: 0 0;
      justify-content: space-between;
      align-items: center;
  }

  .about-text{
    width: 95vw;
  }
  .about-img> img{
    max-width: 350px;
  }
  .tv-video-1{
    position: absolute;
    top: 49px;
    right: 42px;
    max-width: 262px;
      z-index: -1;
  }
  .tv-video-2{
    position: absolute;
    top: 31px;
        right: 72px;
        max-width: 212px;
    z-index: -1;
  }
  .staranger-poster{
    width: 50px;
  }
  .download-gif{
    width: 50px;
  }
  .download-gif-text> h3{
    font-size: 0.9rem;
  }
  .download-gif-text> p{
    font-size: 0.8rem;
  }
  .downloading-gif{
    padding: 10px 8px;
    width: 270px;
    bottom: 15px;
    left: 34px;
  }
  .faq-container{
    padding: 10px 0;
    margin: 0 20px;
  }
  .faq-container .subscribe{
    margin: 70px 0;
  }
  .faq-container .subscribe form{
    flex-wrap: wrap;
    gap: 10px;
  }
  /* footer  */
.footer-continer{

  max-width: 100vw;
  padding: 20px 0;
  margin: 0 20px;
}
.footer-continer footer{
  max-width: 100vw;
gap: 10px;
}
.footer-list{
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;
}
.footer-list ul li{
  margin-top: 15px;
  text-decoration: underline;
}
.footer-list ul{
  min-width: 150px;
}
.copy-text{
  margin: 20px 10px;
}
}


