@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap');


*{
    padding: 0;
    margin: 0;
}
body{
    background-color: black;
}
.main{
    background-image: url("background image.jpg");
    height: 80vh;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: max(1200px,100vw);
}
    .main .box{
        height: 80vh;
        width: 100%;
        background-color: black;
        opacity: 0.6;
        position: absolute;
        top: 0;
       
    }

    nav{
        display: flex;
        align-items: center;
        max-width: 146vh;
        margin: auto;
        justify-content: space-between;
        height: 95px;
        
    }
    nav img{
        color: red;
        width: 112px;
       position: relative;
       z-index: 10;
    }
    nav button{
        position: relative;
        z-index: 10;
        font-weight: 200px;
    }
    .hero{
        height: calc(100% - 155px);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        font-family: "martel sans",sans-serif;
        gap: 23px;
        padding: 30px;
        color: white;
    }
   .hero> :nth-child(1){
    font-weight: 900;
    font-size: 48px;
    text-align: center;
   }
   .hero> :nth-child(2){
    font-size: 23px;
    font-weight: 400;
    text-align: center;
   }
   .hero> :nth-child(3){
    font-size: 20px;
    font-weight: 400;
    text-align: center;
   }
   .seperation{
    height: 8px;
    background-color: rgb(77, 74, 74);
   }
   .btn{
    font-weight: 400;
    padding: 3px 8px;
    background-color: rgba(248, 243, 243, 0.342);
    color: white;
    border: 1px solid white;
    border-radius: 4px;
    cursor: pointer;
   }

   .btn-red-sm{
    background-color: red;
    color: white;
   }
   .btn-red{
    background-color: red;
    color: white;
    padding: 3px 24px;
    font-size: 20px;
    border-radius: 4px;
   }
   .main input{
    padding: 3px 24px;
    color: white;
    font-size: 20px;
    border-radius: 4px;
    background-color: rgba(23, 23, 23,0.2);
    border: 1px solid rgba(246, 238, 238,0.5);
   }
   .first{
    display: flex;
    justify-content: center;
    max-width: 70vw;
    margin: auto;
    color: white;
    justify-content: center;
    align-items: center;
   }
   .secimg{
    position: relative;
    top: 0;
   }

   .secimg img{
    width: 555px;
    position: relative;
    z-index: 10;


   }

   .secimg video{
    position: absolute;
    top: 85px;
    right: 81px;
    


   }
   .first > div{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
   }

   .first >div :nth-child(1){
    font-size: 48px;
    font-family: "martel sans",sans-serif;
    font-weight: bolder;

   }

   .first >div :nth-child(2){
    font-size: 28px;
    font-family: "martel sans",sans-serif;
  
    /* font-weight: bolder; */
    
   }
   .faqbox{
    display: flex;
    background-color: #2d2d2d;
    padding: 32px;
    max-width: 40vw;
    margin: 34px  auto;
    justify-content: space-between;
    cursor: pointer;
    font-size: 48px;
    transition: all 1s ease-in-out;
    


   }

   .faqbox svg{
    filter: invert(1);
   }

   .faqbox:hover{
    background-color: rgb(114, 112, 112);
    color: white;
   }

   


   .faq h2{
    text-align: center;
    color: white;
    margin: 20px;
    font-size: 48px;
   }


   .faqbox{
    color: white;
   }

   footer{
    color: white;
    max-width: 60vw;
    margin: auto;
    padding: 14px;
}

.footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    color: white;
}

.footer-item{
    display: flex;
    flex-direction: column;
    gap: 23px;
   }
   
   footer .question{
       text-align: center;
       padding: 34px 0;
    }

    .footer a{
        font-size: 14px;
        color: white;
    }

    @media screen and (max-width: 1300px;) {
        body{
            background-color: red;

        }
        .first{
            flex-wrap: wrap;
        }

        .footer{
            display: grid;
            grid-template-columns: 1fr 1fr;

        }

    }

