@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&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');


.main {
    background-image: url("assets/images/bg.jpeg");
    background-position: center center;
    background-repeat: no-repeat;
    height: 80vh;
    background-size: max(1200px, 100vw);
    position: relative;
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;

}

.main .box {
    height: 80vh;
    width: 100%;
    opacity: 0.5;
    position: absolute;
    top: 0;
    background-color: black;
}

body {
    background-color: black;
}

nav {
    max-width: 60vw;
    display: flex;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    height: 62px;

}

nav img {
    color: red;
    width: 130px;
    position: relative;
    z-index: 9;
}

nav button {
    position: relative;
    z-index: 9;
}

.hero {
    height:100%;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: white;
    position: relative;
    font-family: "Martel Sans", sans-serif;
    gap: 20px;
    padding:0px 29px;
    padding-bottom: 50px;
    padding-right: 100px;
}

.hero> :first-child {
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    font-weight: bolder;
    font-size: 48px;
    text-align: center;
}

.hero> :nth-child(2) {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}

.hero> :nth-child(3) {
    font-weight: 400;
    font-size: 15px;
    text-align: center;
}
.separation{
    height: 6px;
    background-color: rgb(91, 91, 91);
}
.hero div {
    margin-top: -10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 700px;
}


.btn{
    padding: 3px 8px;
    font-weight: 400;
    background-color: rgba(23,23,23,0.6);
    color: rgb(214, 211, 211);
    border: 1px solid white;
    border-radius: 4px;
    font: 'poppins',sans-serif;
    cursor: pointer;
}

.btn-red{
    background-color: rgb(204, 38, 38);
    color: rgb(214, 211, 211);
    padding: 3px 24px;
    font-size: 20px;
    border-radius: 4px;
}

.main input{
    padding: 5px 105px 2px 11px;
    font-size: 15px;
    color: white;
    font-weight: 900;
    border-radius: 4px;
    background-color: rgba(23,23,23,0.6);
    border:1px solid rgba(23,23,23,0.5) ;
}

.btn-red-sm{
    background-color: rgb(204, 38, 38);
    color: rgb(214, 211, 211);
}
.first{
    display: flex;
    justify-content: space-between;
    max-width: 70vw;
    margin:auto ;
    color: white;
    align-items: center;
    flex-wrap: wrap;
}
.first .text {
    flex: 1;
    min-width: 300px;
}

.first .text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.first .text p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.secImg{
    justify-content: center;
    display: flex;
    align-items: center;
    min-width: 300px;
    padding: 50px 0px;

}

.secImg img{
    width:100%;
    height: auto;
    max-width: 450px;
    border-radius: 4px;
    display: block;
}

.faq{
    background-color: #000000;
    color: white;
    padding: 30px;
}

.faq h2{
    text-align: center;
    font-size: 48px;
}
.faqbox:hover{
    background-color: rgb(41, 40, 40);
    cursor: pointer;
}
.faq svg{
    filter: invert(1);
}

.faqbox{
    display: flex;
    transition: all 1s ease-out;
    background-color: rgb(62, 61, 61);
    justify-content: space-between;
    padding: 17px;
    font-size: 17px;
    max-width: 55vw;
    margin:  16px auto;
}

.qns{
    padding: 34px 0px;
}

footer{
    max-width: 60vw;
    margin: auto;
    color: white;
    gap: 14px;
}



.footer a{
    text-decoration: none;
    color: white;
    font-size: 12px;
}

@media (max-width:1300px) {
    .footer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px  ;
    }
    nav { 
    max-width: 90vw;
  }

}
                

        
.footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    color: white;

}
.footer-item{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}