@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@500&family=Poppins&family=Ubuntu&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
  background-color: black;
}
.main {
  background-image: url(bg.jpg);
  background-size: max(1200px, 100vw);
  background-repeat: no-repeat;
  background-position: center center;
  height: 70vh;
  position: relative;
}
.box {
  position: absolute;
  top: 0;
  height: 70vh;
  width: 100%;
  background-color: black;
  opacity: 0.69;
}
nav {
  height: 100px;
  max-width: 65vw;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav img {
  color: red;
  width: 140px;
  position: relative;
  z-index: 10;
}
nav button {
  position: relative;
  z-index: 10;
}

/* hero section  */
.hero {
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu,
    sans-serif;
  height: calc(100% - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  position: relative;
  padding: 0 30px;
  gap: 15px;
}
.hero > :nth-child(1) {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
}
.hero > :nth-child(2) {
  text-align: center;
  font-size: 22px;
  font-weight: 400;
}
.hero > :nth-child(3) {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}

/* seperation  */
.separation {
  height: 7px;
  background-color: rgb(46, 44, 44);
  position: relative;
  z-index: 20;
}

/* buttons */
.btn {
  padding: 3px 9px;
  font-weight: 600;
  background-color: rgba(23,23,23,0.5);
  color: white;
  border: 1.5px solid rgba(238,238,238,0.7);
  border-radius: 4px;
}


.btn-red {
  background-color: red;
  padding: 5px 24px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 4px;
  color: white;
}

.btn-red-sm {
  background-color: red;
  color: white;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.main input {
  background: rgba(23, 23, 23, 0.7);
  padding: 11px 101px 10px 8px;
  font-weight: 600;
  font-size: 12px;
  color: white;
  border-radius: 4px;
  border: 1px solid rgba(246, 238, 238, 0.5);
}

/* first section  */
.first{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 70vw;
  margin: auto;
  color: white;
}



.secImg{
  position: relative;
}

.secImg img{
  width: 400px;
  position: relative;
  z-index: 10;
}
.secImg video{
  position: absolute;
    top: 51px;
    right: 0px;
    width: 369px;
    height: 214px;
}
section.first > div{
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}

section.first > div :nth-child(1){
  font-size: 42px;
  font-weight: 900;
}

section.first > div :nth-child(2){
  font-size: 22px;
  font-weight: 400;
}

/* FAQ section  */
.faq {
  background-color: black;
  color: white;
  padding: 30px;
}
.faq h2{
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu,
    sans-serif;
  font-size: 42px;
  text-align: center;
  font-weight: 900;
}
.faqbox svg{
  filter: invert(1);
}
.faqbox{
  justify-content: space-between;
  display: flex;
  background-color: rgb(45, 45, 45);
  max-width: 70vw;
  margin: 15px auto;
  padding: 24px;
  cursor: pointer;
  font-size: 24px;
  font-weight: 500;
}
.faqbox:hover{
background-color: #414141;
transition: all 0.5s ease-out;
}

/* Footer section  */

footer {
  height: 50vh;
  padding: 15px;
  color: white;
  max-width: 60vw;
  margin: auto;
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu,
    sans-serif;
}

footer .questions{
  padding: 34px 0;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}
.footer{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  color: white;
}

@media screen and (max-width: 1200px){

  nav {
    max-width: 90vw;
  }

  .first{
    flex-wrap: wrap;
  }

  .secImg img{
    width: 300px;
  }

  .secImg video {
    width: 300px;
    height: 200px;
  }

  .hero> :nth-child(1) {
    font-size: 32px;
  }

  .hero> :nth-child(2) {
    font-size: 18px;
  }

  .hero> :nth-child(3) {
    font-size: 17px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  .faq h2{
    text-align: center;
    font-size: 32px;
  }

  footer{
    max-width: 90vw;
  }
  .footer-item{
    align-items: center;
  }

}

@media screen and (max-width: 1200px) {
  .footer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
  }
}

.footer a{
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer-item{
  display: flex;
  flex-direction: column;
  gap: 20px;
}



