* {
    margin: 0;
    padding: 0;
    font-family: 'Netflix Sans', 'Helvetica Neue', 'Segoe UI', 'Roboto', 'Ubuntu', sans-serif;
    box-sizing: border-box;
    height: auto;
}

body {
    background-color: black;
    overflow-x: hidden;
}

header {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.navbar {
    position: absolute;
    width: 80vw;
    display: flex;
    padding: 25px 22px;
    justify-content: space-between;
    z-index: 100;
}

header nav img {
    width: 9.25rem;
}

.buttons {
    display: inline-flex;
    align-items: center;
    gap: 25px;
}

.signIn {
    background-color: #E50914;
    font-weight: bold;
    padding: 7px 15px;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

.lang {
    border: 3px solid transparent;
    box-shadow: 0px 0px 2px rgba(255, 255, 255, 0.759);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    gap: 7px;
    padding: 3px 12px;
    border-radius: 3px;
    background-color: #2323238c;

    img {
        width: 16px;
    }

    #lang {
        font-weight: 600;
        font-size: 16px;
        border: none;
        background-color: transparent;
        appearance: none;
        color: white;
    }
}

/* Main content */
.wrapper {
    min-height: 43.25rem;
    width: 100vw;
    position: relative;
    top: 0;
}

.wrapper>:first-child {
    position: absolute;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.wrapper .img {
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: url(assets/images/background.jpg) no-repeat center center/cover;
    transform: scale(1.25) translateY(-10%);
    overflow: hidden;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: rgb(0 0 0 / 40%);
}

.content {
    position: relative;
    top: 50px;
    height: 43.75rem;
    max-width: calc(83.33333333333334% - 6rem);
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;

    h1 {
        font-size: 3rem;
        font-weight: 900;
    }

    p {
        font-size: 1.5rem;
        margin: 1rem 0 1.5rem 0;
        font-weight: 400;
    }

    h3 {
        font-size: 1.25rem;
        font-weight: 400;
    }
}

.mail {
    margin: 1rem auto 0;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
}
.input-mail{
    display: flex;
    align-items: center;
    position: relative;
}

input[type="text"] {
    position: relative;
    width: 370px;
    line-height: 1.5;
    font-size: 0.95rem;
    color: white;
    padding: 1.5rem 1rem 0.5rem;
    background-color: #1a1a1a80;
    outline: none;
    border: none;
    border-radius: 3px;
    box-shadow: 0px 0px 2px rgba(255, 255, 255, 0.759);
}

.input-mail label {
    position: absolute;
    font-weight: 400;
    font-size: 1rem;
    color: #cfcfcf;
    left: 15px;
    top: 15px;
    transition: .3s;
}

input:valid+label,
input:focus+label {
    color: #cfcfcf;
    left: 15px;
    transform: translateY(-8px);
    font-size: 0.85rem;
}

.get-started {
    background-color: red;
    font-weight: 600;
    border: none;
    font-size: 1.5rem;
    border-radius: 5px;
    padding: 0.8rem 2rem;
    color: white;
    cursor: pointer;
}

.get-started:hover {
    background-color: #db0101;
}

.seperator {
    height: 8px;
    width: 100%;
    background-color: #232323;
    position: absolute;
    bottom: -0.5rem;
}

.section {
    width: 100vw;
    position: relative;
    color: white;
    padding: 4.5rem 0;
}

.content-wrapper {
    max-width: calc(83.33333333333334% - 6rem);
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text {
    padding: 0 0.375rem;
    flex-basis: 50%;

    h2 {
        font-size: 3rem;
        font-weight: 900;
    }

    p {
        margin: 1rem 0 0;
        font-size: 1.5rem;
        font-weight: 400;
    }
}

.tv {
    padding: 0 0.375rem;
    flex-basis: 50%;
    text-align: center;
    z-index: 1;
}

.image {
    position: relative;

    img {
        width: 100%;
    }
}

.vid {
    z-index: -1;
    overflow: hidden;
    max-width: 73%;
    max-height: 54%;
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vid2 {
    z-index: -1;
    overflow: hidden;
    max-width: 63%;
    max-height: 47%;
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.download{
    position: absolute;
    left: 50%;
    bottom: 8%;
    overflow: hidden;
    transform: translateX(-50%);
    padding: 0.5rem 0.75rem;
    background-color: #000;
    border: 2px solid rgba(128,128,128,0.7);
    box-shadow: 0 0 2em 0 rgb(0,0,0);
    border-radius: 0.75rem;
    display: flex;
    width: 60%;
    height: auto;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 10px;
    min-width: 15rem;
    > :nth-child(1){
        margin: 0 0.5rem 0 0;
        height: 5rem;
        width: auto;
    }
    > :nth-child(3){
        width: 3rem;
    }
    div{
        flex-grow: 1;
    }
    div p{
        font-size: 0.86rem;
        color: #0071eb;
    }
}

.faq-section{
    position: relative;
}
.faq{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 4.5rem 0;
    max-width: calc( 83.33333333333334% - 6rem );
    margin: auto;
}
.text-faq{
    z-index: 1;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 400;
    h2 {
        font-size: 3rem;
        font-weight: 900;
    }
    > :nth-child(2){
        margin: 1.5rem 0 0;
    }
    .ques{
        width: 100%;
        background-color: #2d2d2d;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        margin-bottom: 0.5rem;
        img{
            width: 40px;
            height: 40px;
        }
    }
    .ques:hover{
        background-color: #414141;
        cursor: pointer;
    }
}
.form{
    font-size: 1.25rem;
    margin-top: 2.85rem;
}

footer{
    height: auto;
    width: 100%;
    h1{
        margin: 2rem;
        color: white;
        text-align: center;
        font-weight: 600;
        font-size: 2rem;
    }
    .social{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 0;
        gap: 40px;
    }
    a{
        color: white;
        text-decoration: none;
    }
}

/* For small screen */
@media (max-width: 1280px) {
    .navbar {
        width: 100vw;
        padding: 25px 30px;
    }
    .content{
        max-width: calc(100% - 4rem);
    }

    .content-wrapper {
        max-width: calc(100% - 4rem);
    }
    .faq{
        max-width: calc(100% - 4rem);
    }
}

@media screen and (max-width: 960px) {
    .navbar {
        height: 10vh;
        width: 100vw;
        margin: auto;
        display: flex;
        padding: 0 30px;
        justify-content: space-between;
    }

    .wrapper{
        min-height: 32rem;
        /* padding: 8.5rem 0 3rem; */
    }

    .buttons {
        gap: 10px;
    }

    .logo {
        width: 5.5625rem;
    }

    .content {
        h1 {
            font-size: 2rem;
            font-weight: 700;
        }

        p {
            font-size: 1.125rem;
            margin: 1rem 0 0;
            font-weight: 400;
        }

        h3 {
            font-size: 1.125rem;
            margin-top: 1.5rem;
            font-weight: 400;
        }
    }

    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .reverse{
        flex-direction: column-reverse;
    }

    .text {
        flex-basis: 50%;

        h2 {
            font-size: 2rem;
            font-weight: 700;
        }

        p {
            margin: 1rem 0 0;
            font-size: 1.125rem;
            font-weight: 400;
        }
    }
    .download{
        > :nth-child(1){
            height: 4rem;
        }
        > :nth-child(3){
            width: 3rem;
        }
    }
    .faq{
        max-width: calc(100% - 4rem);
    }
    .text-faq{
        h2{
            font-size: 2rem;
            font-weight: 700;
        }
        .ques{
            font-size: 1.125rem;
            font-weight: 400;
            img{
                width: 30px;
                height: 30px;
            }
        }
    }
}

@media screen and (max-width: 600px) {
    .section{
        padding: 3.5rem 0;
    }
    .mail, .input-mail{
        width: 100%;
    }
    input[type="text"]{
        width: 100%;
    }
    .tv{
        padding: 0;
    }
    .download{
        width: 85%;
        > :nth-child(1){
            height: 3rem;
        }
        > :nth-child(2){
            h4{
                font-size: 0.875rem;
                font-weight: 600;
            }
            p{
                font-size: 0.75rem;
                font-weight: 400;
            }
        }
        > :nth-child(3){
            width: 3rem;
        }
    }
    .faq{
        max-width: calc(100% - 3rem);
    }
}