*{
    padding: 0px;
    margin: 0;
    font-family: Netflix Sans,Helvetica Neue,Segoe UI,Roboto,Ubuntu,sans-serif;
}
header{
    position: relative;
    display: block;
    z-index: 1;
}
nav{
    padding: 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav .container{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo svg{
    color: rgb(229,9,20);
    fill: currentColor;
    width: 5.5625rem;
    height: 1.5rem;
}
.sign-in{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 24px;
    border-radius: 0.25rem;
    padding: 0px 16px;
    background-color: rgb(229,9,20);
    transition-duration: 250ms;
    transition-property: background-color;
    transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
}
.sign-in:hover{
    background-color: rgb(193, 17, 25);
}
.sign-in-page{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    min-height: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}
.menu-options{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.language{
    margin-left: 24px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    border: 1px solid rgba(128,128,128,0.7);
    overflow: clip;
    border-radius: .25rem;
}
.language .menu select{
    font-size: 1rem;
    padding: 6px 36px;
    cursor: pointer;
    background: transparent;
    color: white;
    text-decoration: none;
    border: none;
    width: 0px;
    -webkit-appearance: none;
}
option  {
    color: black;
    min-height: 1.2rem;
}
option:hover{
    color: white;
}
.language .language-icon{
    position: absolute;
    z-index: -1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    fill: currentColor;
    color: white;
    padding-left: 0.75rem;
}
.language .drop-icon{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    fill: currentColor;
    color: white;
    position: absolute;
    background-color: rgba(22,22,22,0.7);
    z-index: -2;
    width: calc(100% - 12px);
    height: 100%;
}
main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    top: -9rem;
    width: 100%;
}
main .intro{
    padding: 9.875rem 32px 4rem;
    position: relative;
    min-height: 18rem;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: calc( 100% - 3rem );
    overflow: clip;
    background-size: 1.25rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, -10%), rgba(0, 0, 0, 0.7)),
                linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.36)),
                linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.54)),
                linear-gradient(270deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.36));
}
main .intro img{
    width: inherit;
    position: absolute;
    transform: translateY(-10%);
    object-fit: cover;
    z-index: -1;
}
.intro .items{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}
.items .heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.intro .items h1{
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}
.intro .items p{
    text-align: center;
    font-size: 1.125rem;
    font-weight: 400;
    margin-top: 16px;
}
.intro .items .form-input{
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.form-input h3{
    text-align: center;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
}
.form-input .email-input{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1rem auto 0px;
}
.email-input .input{
    background-color: rgb(37 37 37 / 66%);
    border: 1px solid grey;
    border-radius: 5px;
    width: 50%;
}
.email-input input{
    text-decoration: none;
    display: flex;
    text-align: left;
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    line-height: 1.5;
    appearance: none;
    padding: 1rem 1rem 1rem;
}
.email-input label{
    position: absolute;
    text-overflow: ellipsis;
    line-height: 1.5;
    margin: 16px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}
.email-input button{
    background-color: rgb(229, 9, 20);
    color: white;
    margin-left: .5rem;
    display: flex;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition-duration: 250ms;
    transition-property: background-color;
    transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
}
.email-input button:hover{
    background-color: rgb(193, 17, 25);
}
.email-input button .button-icon{
    height: 1.5rem;
    display: inline-block;
    cursor: pointer;
}
.section{
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    border-top: 8px solid rgb(35, 35, 35);
    padding: 4.5rem 0px;
}
.section .content{
    /* max-width: calc( 83.33333333333334% - 6rem ); */
    max-width: calc( 100% - 3rem );
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.content .text{
    flex-basis: 100%;
}
.content .text h2{
    color: white;
    font-size: 2rem;
    font-weight: 700;
}
.content .text p{
    color: white;
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 400;
}
.content .media{
    position: relative;
    flex-basis: 100%;
    object-fit: contain;
}
.content .media img{
    position: relative;
    width: 100%;
    z-index: 1;
    height: inherit;
}
#tv-video{
    position: absolute;
    top: 20%;
    left: 12%;
    width: 80%;
    z-index: 0;
    object-fit: contain;
    object-position: top left;
}
#mobile-animation{
    display: flex;
    justify-content: center;
}
.mobile-animation{
    position: absolute;
    top: 68%;
    min-width: 15rem;
    z-index: 1;
    background-color: black;
    color: white;
    display: flex;
    border-radius: 0.75rem;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(128,128,128,0.7);
    width: 50%;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 0 2em 0 rgb(0,0,0);
}
.mobile-animation #movie-image-for-mobile{
    height: 5rem;
    width: auto;
    margin: 0 1rem 0 0;
}
.mobile-animation-text .image-name{
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    padding-right: 3.4rem;
}
.mobile-animation-text .downloading{
    color: #0071eb;
    font-size: 0.875rem;
    font-weight: 400;
    text-align: left;
}
#download-icon{
    height: 3.75rem;
    width: 3rem;
}
#device-pile-in-video{
    position: absolute;
    top: 5%;
    left: 18%;
    width: 63%;
    height: 50%;
    object-fit: contain;
    overflow: clip;
}
.faq-section{
    color: white;
    flex-direction: column;
}
.faq-section h2{
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}
.faq-section .questions{
    margin: 1.5rem 0rem 0rem;
    width: 100%;
    max-width: calc( 100% - 3rem );
}
ul{
    list-style: none;
}
.faq-section .faq-question{
    margin-bottom: 0.5rem;
}
.faq-question button{
    padding: 1.5rem;
    border: none;
    appearance: none;
    border-radius: 0;
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: rgb(45,45,45);
    transition-property: background-color;
    transition-duration: 250ms;
    transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
}
.faq-question button:hover{
    background-color: rgb(65,65,65);
}
.faq-question button span{
    color: white;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 400;
}
.faq-question button svg{
    fill: currentColor;
    color: white;
}
.faq-section .form-input{
    margin-top: 2.85rem;
}
footer{
    position: relative;
    background-color: black;
    top: -9rem;
    padding: 0rem 1.5rem;
    border-top: 8px solid rgb(35, 35, 35);
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    margin: 0;
}
footer .container{
    display: flex;
    font-size: 0.875rem;
    font-weight: 400;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color:rgba(255,255,255,0.7);
    margin: 4.5rem auto;
}
footer .container .item:nth-child(1){
    margin-bottom: 0.75rem;
    font-size: 1rem;
}
footer .container .item:nth-child(2){
    margin: 0.75rem 0;
    width: 100%;
}
footer .container .item:nth-child(3){
    margin-left: -24px;
}
footer .container .item:nth-child(4){
    flex: 0 0 100%;
    margin-top: 1.5rem;
}
footer ul{
    display: flex;
    flex-wrap: wrap;
    margin: -1rem 0 1rem -0.75rem;
}
footer li{
    margin: 1rem 0rem 0rem 0.75rem;
    flex: 0 0 calc(25% - 0.75rem);
}
.footer-links{
    color:rgba(255,255,255,0.7);
    font-size: inherit;
    font-weight: 400;
}
@media screen and (min-width:600px) {
    .form-input .email-input{
        flex-direction: row;
    }
    nav{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    main, footer{
        top: -6rem;
    }
    .language .menu select{
        width: inherit;
    }
    .language .drop-icon{
        padding-right: 12px;
    }
    .faq-section .questions{
        max-width: calc( 100% - 4rem );
    }
    footer{
        padding: 0 2rem;
    }
    .email-input button{
        font-size: 1.5rem;
        font-weight: 500;
        padding: 1rem 1.5rem;
    }
    .email-input button .button-icon{
        margin-left: 0.5rem;
    }
    .section .content{
        max-width: calc( 100% - 4rem );
    }
}
@media screen and (min-width:960px){
    .section .content{
        flex-direction: row;
        text-align: left;
    }
    .sections .section:nth-child(even) .content{
        flex-direction: row-reverse;
    }
    .content .text h2{
        font-size:3rem;
        font-weight: 900;
    }
    .content .text p{
        font-size: 1.5rem;
        font-weight: 400;
    }
    .logo svg{
        width: 148px;
        height: 40px;
    }
    main .intro{
        min-height: 30rem;
    }
    .intro .items h1{
        font-size: 3rem;
        font-weight: 900;
    }
    .intro .items p{
        font-size: 1.5rem;
    }
    .faq-section .questions{
        max-width: calc( 100% - 4rem );
    }
    .faq-question button span{
        font-size: 1.5rem;
    }
    .faq-section h2{
        font-size: 3rem;
        font-weight: 900;
    }
}
@media screen and (min-width:1280px) {
    nav{
        padding-left: 3rem;
        padding-right: 3rem;
        margin: auto;
        max-width: calc(83.33333333333334% - 6rem);
    }
    .faq-section .questions{
        max-width: calc( 83.33333333333334% - 6rem );
    }
    main .intro img{
        width: 100%;
    }
    footer{
        padding: 0 3rem;
        margin: 0 auto;
    }
    footer .container{
        max-width: calc(83.33333333333334% - 6rem);
    }
    .section .content{
        max-width: calc( 83.33333333333334% - 6rem );
    }
}