@import url("https://fonts.googleapis.com/css2?family=Martel+Sans:wght@600&family=Poppins:wght@300;400;700&display=swap");

main {
  background-image: url(assets/images/bg.jpg);
  height: 644px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: max(1200px, 100vw);
  position: relative;
}
body {
  background-color: black;
}
* {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.box {
  height: 644px;
  width: 100%;
  opacity: 0.65;
  background-color: black;
  position: absolute;
  top: 0;
}

.logo {
  width: 10px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 60vw;

  margin: auto;
  height: 100px;
}

nav img {
  width: 130px;
  position: relative;
  z-index: 10;
}

nav button {
  position: relative;
  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;
  gap: 23px;
  padding: 0 30px;
}
.hero > :nth-child(1) {
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
  font-size: 48px;
  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;
}
.line {
  height: 7px;
  width: 100vw;
  background-color: rgb(61, 61, 61);
  position: relative;
  z-index: 20;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.btn {
  padding: 3px 8px;
  font-weight: 400;
  color: white;
  background-color: rgba(248, 243, 243, 0.021);
  border-radius: 4px;
  border: 1px solid white;
  cursor: pointer;
}
.btn-red {
  background-color: red;
  color: white;
  padding: 3px 24px;
  font-size: 20px;
  border-radius: 4px;
  font-weight: 400;
}
.btn-red-sn {
  background-color: red;
  color: white;
}
.email {
  background-color: rgba(23, 23, 23, 0.7);
  padding: 7px 101px 8px 14px;
  font-weight: 900;
  font-size: 12px;
  color: white;
  border-radius: 4px;
  border: 1px solid rgba(246, 238, 238, 0.5);
}
.first {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 70vw;
  color: white;
  margin: auto;
}
.secImg {
  position: relative;
}
.secImg img {
  width: 555px;
  z-index: 10;
  position: relative;
}
.secImg video {
  position: absolute;
  top: 51px;
  right: 0;
  width: 555px;
}

section.first > div {
  display: flex;
  flex-direction: column;

  padding: 34px 0;
}

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

section.first > div :nth-child(2) {
  font-size: 24px;
}
.faq {
  color: white;
  gap: 7px;
  display: grid;
}
.faq h2 {
  text-align: center;
  padding: 30px;
  padding-bottom: 20px;
  font-size: 48px;
}
.faqbox svg {
  filter: invert(1);
}
.faqbox {
  display: flex;
  background-color: rgb(43, 42, 42);
  justify-content: space-between;
  padding: 7px;
  width: 60vw;
  margin: auto;
  transition: all 0.5s ease-out;
  cursor: pointer;
  font-size: 24px;
}
.faq > :last-child {
  margin-bottom: 34px;
}
.faqbox:hover {
  background-color: #1d1c1c;
  color: white;
}
footer {
  color: white;
  max-width: 60vw;
  margin: auto;
  padding: 60px;
}
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  color: white;
}
.footer-item {
  display: flex;

  flex-direction: column;
}
.questions {
  padding: 34px 0;
}
footer a {
  color: white;
  text-decoration: none;
  transition: all 0.1s ease-in;
  font-size: 14px;
  padding: 5px 0px;
}
footer a:hover {
  color: rgb(107, 103, 103);
}

@media screen and (max-width: 1300px) {
  .first {
    flex-wrap: wrap;
  }
  nav {
    max-width: 90vw;
  }
  .secImg img {
    width: 305px;
  }
  .secImg video {
    width: 305px;
  }
  .hero > :nth-child(1) {
    font-size: 32px;
  }
  .hero > :nth-child(2) {
    font-size: 18px;
  }

  .hero > :nth-child(3) {
    font-size: 18px;
  }
  .hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .faq h2 {
    text-align: center;
    font-size: 32px;
  }
  footer {
    max-width: 90vw;
    padding: 75px 0;
  }
  .footer-item {
    align-items: center;
  }
  .footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
