@import url("https://fonts.googleapis.com/css2?family=Martel+Sans:wght@600&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;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: black;
}
.main {
  background-image: url("assets/img/bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: max(1200px, 100vw);
  height: 70vh;
  position: relative;
}
.main .box {
  height: 70vh;
  width: 100%;
  opacity: 0.74;
  background-color: black;
  position: absolute;
  top: 0;
}
nav {
  display: flex;
  max-width: 60vw;
  justify-content: space-between;
  margin: auto;
  align-items: center;
  height: 100px;
}

nav img {
  color: red;
  width: 133px;
  position: relative;
  z-index: 10;
}
nav button {
  position: relative;
  border-radius: 4px;
  margin: 0 5px;
  z-index: 10;
}
.hero {
  font-family: "Martel Sans", sans-serif;
  height: calc(100% - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  position: relative;
  padding: 0px 30px;
}
.hero > :nth-child(1) {
  font-weight: 800;
  font-size: 35px;
  text-align: center;
}
.hero > :nth-child(2) {
  font-weight: 400;
  font-size: 24px;
  text-align: center;
}
.hero > :nth-child(3) {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
}
.separation {
  height: 7px;
  opacity: 0.5;
  background-color: rgb(46, 46, 44);
  z-index: 20;
}
.btn {
  padding: 3px 8px;
  font-weight: 600;
  background-color: rgba(248, 243, 243, 0.021);
  border: 1px solid white;
  cursor: pointer;
  color: white;
}
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.btn-red {
  background-color: red;
  border: red;
  padding: 3px 24px;
  font-size: 20px;
  border-radius: 4px;
  color: white;
}
.btn-red-sm {
  background-color: red;
  border: 1px solid red;
  color: white;
}
.main input {
  padding: 7px 101px 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  border-radius: 4px;
  background-color: rgba(23, 23, 23, 0.7);
  border: 1pxx solid rgba(246, 238, 238, 0.5);
}

.first {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 70vw;
  margin: auto;
  color: white;
}
.secImg {
  position: relative;
}
.secImg img {
  width: 555px;
  position: relative;
  bottom: -21px;
}

.secImg video {
  position: absolute;
  bottom: 80px;
  right: 76px;
  width: 73%;
  z-index: -1;
}
section.first > div {
  display: flex;
  flex-direction: column;
  padding: 34px 0px;
}

.faq h2 {
  text-align: center;
  font-size: 48px;
}

.faq {
  background: black;
  color: white;
  padding: 34px;
}

.faqbox:hover {
  background-color: #414141;
  color: white;
}

.faqbox svg {
  filter: invert(1);
}

.faqbox {
  transition: all 1s ease-out;
  font-size: 24px;
  display: flex;
  justify-content: space-between;
  background-color: #2d2d2d;
  padding: 24px;
  max-width: 60vw;
  margin: 34px auto;
  cursor: pointer;
}

footer {
  color: white;
  max-width: 60vw;
  margin: auto;
  padding: 14px;
}
footer .questions {
  padding: 34px 0px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  color: white;
}
.footer a {
  font-size: 14px;
  color: white;
}
.footer-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media screen and (max-width: 430px) {
  nav {
    max-width: 90vw;
  }
  .first {
    flex-wrap: wrap;
  }
  .hero-buttons {
    flex-direction: column;
  }

  .faq h2 {
    text-align: center;
  }

  footer {
    text-align: center;
    max-width: 90vw;
    padding: 75px 0;
  }

  .footer-item {
    align-items: center;
  }
  .footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2 5px;
  }
}
