@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@600&display=swap');

* {
    padding: 0;
    margin: 0;
}
body{
    background-color: black;
}
.main {
    background-image: url(pic/bg.jpg);
    height: 70vh;
    position: relative;
    background-position: center center;
    background-size: max(1200px, 100vw);
    background-repeat: no-repeat;
}

.main .box {
    height: 70vh;
    width: 100%;
    opacity: 0.69;
    background-color: black;
    position: absolute;
    top: 0;
}

nav {
    display: flex;
    max-width: 60vw;
    margin: auto;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

nav img {
    color: red;
    width: 114px;
    position: relative;
    z-index: 10;

}

nav button {
    position: relative;
    z-index: 10;

}

.hero {
    font-family: "Martel Sans", serif;
    font-weight: 600;
    padding: 0 30px;
    height: calc(100% - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    position: relative;
    gap: 5px;
    text-align: center;
}

.hero> :nth-child(1) {
    font-size: 44px;
    font-weight: 900;
    text-align: center;
}

.hero :nth-child(2) {
    font-size: 22px;
    font-weight: 400;
    text-align: center;

}

.hero :nth-child(3) {
    font-size: 18px;
    font-weight: 400;
    text-align: center;

}

.sepration {
    height: 7px;
    background-color: rgb(73, 72, 72);
    position: relative;
    z-index: 12;
}

.btn {
    padding: 3px 8px;
    background-color: rgba(173, 173, 173, 0.192);
    color: white;
    border: 0.5px solid white;
    cursor: pointer;
}
.hero-button{
    display: flex;
    justify-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-red-sm {
    background-color: red;
    color: white;
}

.btn-red {
    background-color: red;
    color: white;
    padding: 0.5px 20px;
    font-size: 20px;
    border-radius: 5px;
}

.main input {
    padding: 7px 101px 8px 14px;
    font-size: 12px;
    background-color: rgba(23, 23, 23, 0.7); 
    border: 1px solid rgba(228, 223, 223, 0.5);
    color: white;
}
.first{
    display: flex;
    justify-content: center;
    max-width: 70vw;
    margin: auto;
    color: white;
    justify-content: center;
    align-items: center;
}
@media  screen and (max-width:1300px) {
    .first{
        flex-wrap: wrap;
    }
}
.secimg{
    position: relative;
}
.secimg img{
width: 555px;
position: relative;
z-index: 10;
}
.secimg video{
    position: absolute;
    top: 51px;
    right: 0px;
    width: 555px;
}
.first > div {
    display: flex;
    flex-direction: column;
    padding: 34px 0px;
}
.first > div :first-child{
    font-size: 40px;
    font-weight: bolder;
}
.first > div :nth-child(2){
    font-size: 18px;
}
.faq h2{
    text-align: center;
    font-size: 46px;
}
.faq{
    background-color: black;
    color: white;
    padding: 30px;
}
.faqbox:hover{
    background-color: rgb(87, 86, 86);
}
.faqbox{
    transition: all 1s ease-out;
    background-color: rgb(45, 45, 45);
    display: flex;
    padding: 10px;
    justify-content: space-between;
    max-width: 60vw;
    margin:  10px auto;
    cursor: pointer;
    font-size: 24px;
    font-weight: 400;
}
footer{
    color: white;
    max-width: 60vw;
    margin: auto;
    padding: 12px;
}
.questions{
    padding: 28px 15px;
    font-size: 22px;
}
footer a{
    font-size: 16px;
    color: white;
}
.footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    color: white;
}
@media  screen and (max-width:1300px) {
    .footer{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}
.footer-item{
    display: flex;
    flex-direction: column;
    gap: 23px;
}
@media  screen and (max-width:1300px) {
    nav{
        max-width: 80vw;
    }
    .secimg img{
        width: 305px;
       }
       .secimg video{
        width: 305px;
    }
    .hero> :nth-child(1) {
        font-size: 28px;
    }
    .hero> :nth-child(2) {
        font-size: 16px;
    }
    .hero> :nth-child(3) {
        font-size: 16px;
    }
    .hero-button{
        display: flex;
        flex-direction: column;
    }
    .faq h2{
        font-size: 30px;
    }
    footer{
        max-width: 90vw;
    }
    .footer-item{
        align-items: center;
    }
}