@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&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Martel+Sans:wght@700&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&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
body {
  background-color: black;
}
* {
  margin: 0%;
  padding: 0%;
}
.main {
  position: relative;
  background-image: url(Assets/image/bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: max(100vw, 1200px);
  height: 644px;
}
.main .box {
  position: absolute;
  top: 0;
  height: 644px;
  width: 100%;
  background-color: black;
  opacity: 0.69;
}

nav {
  /* padding-right: 50px; */
  display: flex;
  max-width: 70vw;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
nav img {
  color: red;
  width: 130px;
  position: relative;
  z-index: 10;
}
nav button {
  position: relative;
  z-index: 10;
}
.hero {
  font-family: "Poppins";
  color: white;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  gap: 0px;
  padding: 30px;
}
.hero > :first-child {
  font-weight: bolder;
  font-size: 56px;
  line-height: 1.5;
  text-align: center;
}
.hero > :nth-child(2) {
  font-weight: 500;
  font-size: 20px;
  line-height: 2;
  text-align: center;
}
.hero > :nth-child(3) {
  font-weight: 500;
  text-align: center;
  font-size: 14px;
  line-height: 4;
}

.separation {
  height: 7px;
  background-color: rgba(248, 243, 243, 0.097);
}
.btn {
  padding: 3px 8px;
  color: white;
  background-color: rgba(213, 204, 204, 0.14);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.345);
  cursor: pointer;
}
.btn-red {
  background-color: red;
  color: white;
  padding: 15px 25px;
  font-size: 20px;
  font-weight: 550;
}
.btn-red-sm {
  background-color: rgb(255, 0, 0);
  color: white;
  font-weight: 550;
}
.small_btn{
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.btn-language{
  padding-right: 60px;
}
.mail {
  background-color: rgba(0 0 0 / 50%);
  font-size: larger;
  padding: 14px 25px;
  width: 350px;
  border-radius: 5px;
  border: 1px solid rgba(246, 242, 242, 0.7);
  color: white;
}
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.first {
    display: flex;
    justify-content: center;
    max-width: 70vw;
    margin: auto;
    color: white;
    font-family: "Poppins";
    justify-content: center;
    align-items: center;
}


.secImg {
    position: relative;
}

.secImg img {
    width: 555px;
    position: relative;
    z-index: 10;
}

.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;

}
.second{
    max-width: 85vw;
}

.faqbox{
  display: flex;
  justify-content:space-between;
  background-color: rgb(55, 54, 54);
  transition: all 0.25s ease-out;
  padding: 20px;
  max-width: 60vw;
  margin: 14px auto;
  font-family: "Poppins";
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;

}
.faq h1{
  font-family: "Poppins";
  font-size: 48px;
  text-align: center;
  line-height: 1.5;
}
.faq{
  background-color: black;
  color: white;
}
.faqbox:hover{
  background-color: #2d2d2d;
}

footer {
  color: white;
  max-width: 60vw;
  margin: auto;
  padding: 14px;
}

footer .questions {
  padding: 34px 0;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  color: white;
}
@media screen and (max-width:1300px) {
  .footer{
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}
@media screen and (max-width:1300px) {
  nav{
    max-width: 90vw;
  }
  .first{
    flex-wrap: wrap;
  }
  .secImg img {
    width: 305px;
  }
  .secImg video {
    width: 305px;
  }
  .hero > :nth-child(1){
    font-size: 32px;
  }
  .hero > :nth-child(2){
    font-size: 18px;
    line-height: 4;
  }
  .hero > :nth-child(3){
    font-size: 18px;
    line-height : 2;
  }
  .btn-red{
    padding: 7px 14px;
    font-size: 14px;
    height: 40px;
  }
  .mail{
    height: 20px;
    width: 235px;
  }
  .hero-buttons{
    display: flex;
    flex-direction: column;
  }
}

.footer a{
  font-family: "Poppins";
  font-size: 14px;
  color:white
}
.footer-item{
  display: flex;
  flex-direction: column;
  gap:23px
}