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

*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: bl;
}
body{
    background-color: black;
}
.main{
    background-image: url("assets/bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: max(1200,100vw);
    height: 80vh;
    position: relative;
}
.main .box{
    height: 80vh;
    position: absolute;
    width: 100%;
    opacity: 0.69;
    background-color: black;
    top: 0;
}
nav{
    display: flex;
    margin: auto;
    max-width: 60vw;
    align-items: center;
    justify-content: space-between;
    height: 62px;
}
nav img{
    color: red;
    width: 130px;
    position: relative;
    z-index: 10;
}
nav button{
    position: relative;
    z-index: 10;
}
.hero{
    font-family: "Martel Sans", sans-serif;
    height: calc(100% - 62px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-size: 1.3rem;
    position: relative;
    gap:23px;
    padding:0 30px;
}
.hero> :first-child{
    font-weight: bolder;
    font-size: 48px;
    text-align: center;
}
.hero>:nth-child(2){
    font-size: 24px;
    font-weight: 500px;
    text-align: center;
}
.hero> :nth-child(3){
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}
.separation{
    height: 7px;
    background-color: rgb(44, 43, 43);
    position: relative;
    z-index: 20;
}
.btn{
    padding: 3px 8px;
    font-weight: 400;
    color: white;
    background-color:rgba(241, 240, 240, 0.021);
    border-radius: 4px;
    border: 1px solid white;
    cursor: pointer;
}
.btn-red{
    font-family: poppins;
    background-color: red;
    color: white;
    padding: 3px 24px;
    border-radius: 4px;
    font-size:20px;
    font-weight: 400;
}
.btn-red-sm{
    background-color: red;
    color:white;
}
.main input{
    color: white;
    padding:7px 101px 8px 14px ;
    font-weight: 900;
    border-radius: 4px;
    font-size:12px;
    background-color: rgba(23,23,23, 0.7);
    border: 1px solid rgba(241, 240, 240, 0.5);
}
.hero-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.first{
    margin-top:10px ;
    display: flex;
    justify-content: center;
    max-width: 70vw;
    margin: auto;
    color: white;
    align-items: center;
}

.secImg{
    position: relative;
}
.secImg img{ 
    width: 555px;
    position: relative;
    z-index: 10;

}
.secImg video{
    position: absolute;
    top: 51px;
    right: 0;
    width: 481px;
    height: 320px;
}
section .first>div{
    display: flex;
    flex-direction: column;
    padding: 34px 0;
}
.first>div :first-child{
    font-size: 48px;
    font-weight: bolder;
}
.first>div :nth-child(2){
    font-size: 24px;
    font-weight: 500;
}
.faq{
    background-color: black;
    color: white;
    padding: 34px;
}
.faq h2{
    text-align: center;
    padding-bottom: 20px;
}
.faqbox{
    display: flex;
    justify-content: space-between;
    background-color:#2d2d2d;
    padding: 24px;
    max-width: 60vw;
    margin: 10px auto;
    font-weight: 700;
}
.faqbox:hover{
    background-color:grey ;
}
.sm-container{
    text-align: center;
    margin-top: 30px;
}
.sm-container-buttons{
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: 10px;
}
.sm-container-buttons :first-child{
    margin-right: 10px;
    width: 25vw;
    background-color:rgba(23, 23, 23, 0.7) ;
    color: white;
}
footer{
    color: white;
    max-width: 60vw;
    margin: auto;
}

.footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    color: white;
    padding: 34px;
}


.footer-items{
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.footer a{
    text-decoration: none;
    color: white; 
    font-size: 14px;
    gap: 14px;   
}
.Questions{
    padding:20px 0 ;
}
@media screen and (max-width:1300px){
    
    .main input{
        padding:8px 15px 10px 12px;
    }
    nav{
        max-width: 90vw;
    }
    .first{
        flex-wrap: wrap;
    }
    .secImg img{
        width: 350px;
    }
    .secImg video{
        width: 305px;
        height: 180px;
        
    }
    .hero> :first-child{
        font-size: 32px;
    }
    .hero :nth-child(2){
        font-size: 18px;
    }
    .hero :nth-child(3){
        font-size: 18px;
    }

    .hero-buttons{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }
    /* .first{
        margin: 10px auto;
    } */
}
@media screen and (max-width:1300px){
    
    .footer{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    footer{
        max-width: 90vw;
    }
    .footer-items{
        align-items: center;
    }
}