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

/*  */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: black;
}

.main {

    height: 705px;
    background-image: url(assets/bg.jpg);
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: max (1200px 100vw);

}

.main .box {
    height: 705px;
    width: 100%;
    background-color: black;
    opacity: 0.6;
    position: absolute;
    top: 0;
}

nav {
    height: 62px;
    max-width: 76vw;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    padding-top: 15px;

}
nav img{
     width: 144px; 
}

nav button {
    background-color: red;
    border-radius: 5px;
    padding: 5px 15px;
    color: white;
    /* font-weight: bolder;  */
    border-color: red;
    cursor: pointer;
}

.text {
    height: calc(100% - 77px);
    color: white;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Martel Sans', sans-serif;
    ;
    gap: 23px;
    padding: 0 30px;
    text-align: center;
}

.text> :nth-child(1) {
    font-weight: 900;
    font-size: 48px;

}

.text> :nth-child(2) {
    font-weight: 400;
    font-size: 24px;

}

.text> :nth-child(3) {
    font-weight: 400;
    font-size: 20px;

}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.Red {
    background-color: red;
    border-radius: 5px;
    padding: 10px 28px;
    font-size: 20px;
    color: white;
    /* font-weight: bold;  */
    border-color: red;
    cursor: pointer;
}

input {
    padding: 15px 50px;
    background-color: rgba(23, 23, 23, 0.6);
    border-color: rgba(240, 235, 235, 0.486);
    border-radius: 5px;
    padding: 16px 160px 16px 12px;
    font-size: 12px;
    color: white;
    cursor: pointer;
}

.seperation {
    height: 7px;
    background-color: rgb(35, 35, 35);
}

.first {
  padding: 75px;
    display: flex;
    justify-content: center;
    max-width: 70vw;
    margin: auto;
    align-items: center;
    color: white;
    font-family: 'Roboto', sans-serif;
}

.sectext :nth-child(1) {
    font-size: 48px;
    font-weight: 900;
}

.sectext :nth-child(2) {
    font-size: 20px;
}

.secimg {
    position: relative;

}

.secimg img {
    width: 455px;
    z-index: 10;
    position: relative;
}

.secimg video {
    position: absolute;
    position: absolute;
    width: 333px;
    top: 69px;
    right: 59px;
}


.faq {
    padding: 34px;
    color: white;
    font-size: 48px;
    font-weight: 900;
    display: flex;
    justify-content: center;


}

.question:hover {
    background-color: rgb(65 65 65);
}

.question {
    font-weight: 600;
    transition: all 0.2s ease-out;
    color: white;
    background-color: #2d2d2d;
    height: 80px;
    max-width: 70vw;
    margin: 0px auto 10px auto;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    justify-content: space-between;

}

.email {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
    font-size: 20px;
    font-weight: 400;


}

footer {
    max-width: 70vw;
    margin: auto;
    padding: 70px;
    

}

.contact {

    margin-bottom: 22px;
    font-size: 16px;
}

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 80px;

}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 14px;

}

footer a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;

}
@media screen and (max-width: 1000px) {
    nav img{
        width: 90px; 
   }

    .first {
        display: flex;
        flex-wrap: wrap;
        padding: 30px;
}
.secimg img{
    width: 460px;
}
.secimg video{
    width: 361px;
    transform: translate(23px, -12px);
}

    .text> :nth-child(1) {

        font-size: 32px;

    }

    .text> :nth-child(2) {

        font-size: 18px;

    }

    .text> :nth-child(3) {

        font-size: 18px;

    }

    .sectext :nth-child(1) {


        font-size: 32px;
    }

    .sectext :nth-child(2) {

        font-size: 18px;
    }
    .faq{
        font-size: 32px;
    }
    .question{
        font-size: 18px;
    }
    .email{
        font-size: 18px;
    }
    .footer{
        grid-template-columns: 1fr 1fr;
    }
   }
    @media screen and (max-width: 550px) {
        .hero-buttons{
            flex-direction: column;
        }
    }

@media screen and (max-width:460px) {
    .first img {
        width: 330px;
    }
   .first video { width: 242px;
    transform: translate(13px, -19px);
}
} 

