* {
    padding: 0;
    margin: 0;
    font-family: Netflix Sans, Helvetica Neue, Segoe UI, Roboto, Ubuntu, sans-serif;

}

body {
    background-color: black;
}

.main {

    border: 1px solid black;
    height: 644px;
    position: relative;
    background-image: url("bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: max(1200px, 100vw);
    position: relative;

}

.main>.box {
    width: 100%;
    height: 644px;
    position: absolute;
    top: 0;
    background-color: black;
    opacity: 0.5;
}

.logo {

    width: 130px;
    position: relative;
    z-index: 100;

}

nav {

    max-width: 60vw;
    height: 100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;


}

nav>button {
    position: relative;

}

div.text {
    height: cal(100%-100px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    position: relative;
    gap: 23px;
    padding: 0 30px;

}

.text>span {
    z-index: 100;
    font-size: xx-larger;
    font-family: Netflix Sans, Helvetica Neue, Segoe UI, Roboto, Ubuntu, sans-serif;
}



.text>span:first-child {
    font-weight: bolder;
    font-size: 48px;
    text-align: center;

}

.text>span:nth-child(2) {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

.text>span:nth-child(3) {
    font-size: 20px;
    font-weight: 400;

    text-align: center;
}

input[type="email"] {

    padding: 10px;
    width: 300px;
    border: 1px solid white;
    border-radius: 5px;
    background-color: rgba(23, 23, 23, 0.7);

    color: white;
    font-size: large;


}

input[type="submit"] {
    padding: 15px;
    border-radius: 5px;
    background-color: red;
    color: white;
    font-family: Netflix Sans, Helvetica Neue, Segoe UI, Roboto, Ubuntu, sans-serif;
    font-size: large;
    font-weight: 600;
    margin: 5px;
}

.esub {
    display: flex;
    justify-content: center;
    gap: 20px;

}

.line {
    background-color: gray;
    height: 8px;
}

.butt>button {
    padding: 15px;
    border-radius: 5px;
    z-index: 100;
    position: relative;
    width: 100px;
    border: 1px solid black;
    font-size: large;
    font-weight: 400;
}

.b2 {

    background-color: red;
    color: white;
    font-family: Netflix Sans, Helvetica Neue, Segoe UI, Roboto, Ubuntu, sans-serif;

}

.b1 {
    color: white;
    background-color: rgba(23, 23, 23, 0.7);
    padding: 15px;
    border-radius: 5px;
    z-index: 100;
    position: relative;
    width: 120px;
    border: 1px solid black;
    font-size: large;
    font-weight: 400;
}







.first {
    display: flex;
    justify-content: center;
    color: white;
    margin: auto;
    max-width: 70vw;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:1330px) {
    .first {
        flex-wrap: wrap;
    }
}

.secimg>img {
    width: 555px;
    position: relative;
    z-index: 10;
}

.secimg {
    position: relative;

}

.secimg>video {
    position: absolute;
    top: 64px;
    right: 55px;
    width: 470px;

}

@media screen and (max-width:1300px) {
    nav {
        max-width: 90vw;
    }

    .logo {
        width: 110px;
    }

    input[type="email"] {
        width: 211px;
    }

    .secimg>img {
        width: 300px;
    }

    .secimg>video {

        width: 230px;
        position: absolute;
        top: 40px;
        right: 34px;

    }

    .text>span:first-child {

        font-size: 32px;


    }

    .text>span:nth-child(2) {
        font-size: 18px;


    }

    .text>span:nth-child(3) {
        font-size: 14px;

    }

}




@media screen and (max-width:400px) {
    input[type="email"] {
        width: 120px;
        padding: 11px;
    }

    nav {
        max-width: 100vw;
    }

    .logo {
        width: 97px;
    }

    .b1 {
        padding: 7px;
        width: 100px;
    }

    .butt>button {
        width: 86px;
        padding: 8px;
    }
}



.first>div {
    display: flex;
    flex-direction: column;
}

.first {
    padding: 50px;
}

.first>div>.s1 {
    font-size: 48px;
}

.first>div>.s2 {
    font-size: 24px;
}

.faq {
    color: white;
    font-family: Netflix Sans, Helvetica Neue, Segoe UI, Roboto, Ubuntu, sans-serif;
    padding: 34px;

}

.faq>h2 {
    text-align: center;
    font-size: 48px;

}

.fbox {

    background-color: rgb(70, 56, 56);
    display: flex;
    padding: 34px;
    width: 50vw;
    margin: 34px auto;
    border: 1px solid black;
    justify-content: space-between;
    transition: background-color 0.5s ease-in;

}

.fbox>svg {
    filter: invert(1);
    /* to change the color of the svg */
}

.fbox:hover {
    background-color: red;
}

footer {
    color: white;
    text-decoration: none;
    width: 60vw;
    margin: auto;
}

.footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 10px;
    gap: 30px;

}

@media screen and (max-width:1300px) {
    .footer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /*to make the grid in cols for responsive ness*/


    }
}

.questions {

    padding: 30px 0;
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.footer-item>a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 400;
}

.footer-item>a:hover {
    color: red;
    text-decoration: underline;
}