@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Netflix Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #000;
    color: white;
}

.main {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 100%),
        url('https://assets.nflxext.com/ffe/siteui/vlv3/c38a2d52-138e-48a3-ab68-36787ece46b3/eeb03fc9-99c6-438e-824d-32917ce55783/IN-en-20240101-popsignuptwoweeks-perspective_alpha_website_large.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 56px;
}

.btn {
    height: 34px;
    padding: 7px 17px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #aaa;
    color: white;
    background-color: transparent;
    margin-right: 24px;
    cursor: pointer;
}

select.btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.btn-red-sm {
    background-color: #e50914;
    color: white;
    border: none;
    margin-right: 0;
}

.box {
    height: 35vh;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
}

.hero>span:nth-child(1) {
    font-size: 48px;
    font-weight: 900;
    max-width: 640px;
}

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

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

.hero-buttons {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.hero-buttons>input {
    padding: 16px 16px;
    width: 374px;
    font-size: 16px;
    height: 56px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.red-btn {
    background-color: #e50914;
    color: white;
    border: none;
    height: 56px;
    font-size: 24px;
    padding: 12px 24px;
    cursor: pointer;
}

.separation {
    height: 8px;
    background-color: rgb(35, 35, 35);
    margin: 0;
}

.first {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 70px 45px;
}

.first>div {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.first>div>span:nth-child(1) {
    font-size: 48px;
    font-weight: 900;
}

.first>div>span:nth-child(2) {
    font-size: 24px;
    font-weight: 400;
}

.sec-img {
    position: relative;
}

.sec-img img {
    width: 100%;
    z-index: 10;
    position: relative;
}

.sec-img video {
    position: absolute;
    top: 51px;
    right: 0;
    width: 73%;
    z-index: 5;
}

.second {
    flex-direction: row-reverse;
}

.third video {
    top: 34px;
    right: 82px;
    width: 63%;
}

.faq {
    padding: 70px 45px;
    max-width: 815px;
    margin: auto;
    text-align: center;
}

.faq h2 {
    font-size: 48px;
    margin-bottom: 32px;
}

.faq-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-box li {
    list-style: none;
    background-color: #2d2d2d;
    padding: 24px;
    text-align: left;
    font-size: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-box li:hover {
    background-color: #414141;
}

.end {
    margin-top: 50px;
}

footer {
    max-width: 1000px;
    margin: auto;
    padding: 70px 45px;
    color: rgba(255, 255, 255, 0.7);
}

footer>span {
    font-size: 16px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

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

.final {
    margin-top: 32px;
}

.last-btn {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 768px) {
    nav {
        padding: 24px 12px;
    }

    .hero>span:nth-child(1) {
        font-size: 32px;
    }

    .hero>span:nth-child(2),
    .hero>span:nth-child(3) {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons>input {
        width: 100%;
    }

    .first {
        flex-direction: column;
        padding: 50px 30px;
        text-align: center;
    }

    .second,
    .forth {
        flex-direction: column;
    }

    .first>div>span:nth-child(1) {
        font-size: 32px;
    }

    .first>div>span:nth-child(2) {
        font-size: 18px;
    }

    .footer {
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer-item {
        width: 50%;
    }
}