@import url(https://assets.nflxext.com/ffe/siteui/fonts/hawkins-consumer/netflix-sans/4.19.1/netflix-sans-core-variable-full.woff);

* {
    padding: 0;
    margin: 0;
}

body {
    background-color: black;
}

.main {
    background-image: url(Images/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
}

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

nav {
    display: flex;
    justify-content: space-between;
    max-width: 80vw;
    margin: auto;
    align-items: center;
    height: 90px;
}

nav img {
    color: rgb(81, 0, 0);
    width: 150px;
    position: relative;
    z-index: 10;
}

nav .btn {
    position: relative;
    z-index: 10;
}

.hero {
    font-family: Netflix Sans, "Helvetica Neue", Helvetica, Arial, sans-serif;
    height: calc(100% - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    position: relative;
    gap: 8px;
    padding: 0 30px;
}

.hero>* {
    margin: 0;
    line-height: 1.2;
}

.hero> :nth-child(1) {
    font-weight: 1000;
    font-size: 55px;
    text-align: center;
}

.hero> :nth-child(2) {
    font-weight: 1000;
    font-size: 48px;
    text-align: center;
}

.hero> :nth-child(3) {
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px;
    text-align: center;
}

.hero> :nth-child(4) {
    font-weight: 400;
    font-size: 16px;
    margin-top: 30px;
    text-align: center;
}

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

.btn {
    padding: 7px 40px;
    font-size: 16px;
    font-weight: 400;
    color: white;
    border-radius: 5px;
    background-color: rgba(248, 243, 243, 0.021);
    border: 1px solid white;
    cursor: pointer;
    margin-right: 10px;


}

.btn-red {
    background-color: red;
    font-size: 25px;
    padding: 12px 35px;
    border-radius: 4px;
    color: white;
    border: none;
}

.btn-red-sm {
    background-color: red;
    color: white;
    padding: 9px 18px;
    font-size: 13px;
    border: none;
    font-weight: bold;
}

.main input {
    padding: 12px 35px 14px 14px;
    font-weight: 900;
    font-size: 20px;
    border-radius: 4px;
    background-color: rgba(23, 23, 23, 0.7);
    border: 1px solid rgba(224, 202, 202, 0.5);
    color: white;

}

.First {
    padding: 50px 0;
    margin: 0 auto;
    max-width: 90vw;
    color: white;
}

.First h2 {
    font-family: Netflix Sans, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    padding-left: 60px;
}

.secImg {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 10px;

}

.secImg img {
    border-radius: 8px;
    width: 200px;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.secImg img:hover {
    transform: scale(1.05);
}

.seperation1 {
    height: 7px;
    background-color: rgb(197, 24, 24);
}

.faq {
    background-color: black;
    color: white;
    padding: 40px;
}

.faqbox {
    display: flex;
    background-color: rgb(59, 58, 58);
    padding: 34px;
    max-width: 70vw;
    margin: 34px auto;
    font-size: 25px;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.faqbox:hover {
    transform: scale(1.05);
    background-color: rgb(234, 33, 33);
}

.faq h2 {
    text-align: center;
}

footer {
    color: white;
    max-width: 60vw;
    margin: auto;
    padding: 60px;
}

footer .questions {
    padding: 34px 0;
}


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



@media screen and (max-width: 1300px) {

    nav {
        max-width: 90vw;
    }

    .first {
        flex-wrap: wrap;
    }

    .secImg img {
        width: 305px;
    }

    .secImg video {
        width: 305px;
    }

    .hero> :nth-child(1) {
        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;
    }

    .faq h2 {
        text-align: center;
        font-size: 32px;
    }

    footer {
        max-width: 90vw;
        padding: 75px 0;
    }

    .footer-item {
        align-items: center;
    }


}

@media screen and (max-width: 1300px) {

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


.footer a {
    font-size: 14px;
    color: white;
}

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