*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: black;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.navbar{
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 8px;
    z-index: 10;
}

.navbar__brand{
    width: 100px;
    height: 100%;
}

.brand__logo{
    width: 100%;
    height: 100%;
}

.language__drop__down{
    background: transparent;
    border: none;
    color: white;
}

.language__drop__down:focus{
    outline: none;
}

.dropdown__container{
    border: solid white 1px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.5);
}

.option{
    color: black;
    font-weight: 500;
}

.signin__button{
    background-color: #dc030f ;
    border: 1px solid #dc030f ;
    color: white;
    padding: 9px 5px;
}

.navbar__nav__items{
    display: flex;
    gap: 10px;
}

.hero__bg__image__container{
    width: 100%;
    height: 100%;
}

.hero__bg__image{
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero__bg__overlay{
    position: absolute;
    /* top: 0;
    right: 0;
    bottom: 0;
    left: 0; */
    inset: 0;
    width: 100%;
    height: 500px;
    background: rgba(0, 0, 0, 0.3);
    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% );
}

.hero__card{
    position: absolute;
    top: 20%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero__title{
    font-weight: 600;
    font-size: 30px;
}

.hero__subtitle, .hero__description{
    font-weight: 400;
}

.hero__description{
    margin: 0 50px;
}

.email__input{
    font-size: 20px;
    border: none;
    background: transparent;
    width: 100%;
    height: 100%;
    outline: none;
    padding-left: 8px;
    padding-top: 8px;
}


.email__form__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
}


.form__container{
    background-color: white;
    width: 90%;
    height: 50px;
    position: relative;
}

.email__label{
    /* color: black; */
    position: absolute;
    top: 27%;
    left: 2%;
    color: rgb(71, 65, 65);
    transition: 0.4s;
}

.email__input:focus +.email__label{
    top: 3px;
    font-size: 12px;
}

.email__input:not(:placeholder-shown).email__input:not(:focus)+.email__label{
    top: 3px;
    font-size: 12px
}

.form__container{
    border-radius: 3px;
}

.primary__button{
    margin-top: 10px;
    background-color: #dc030f ;
    border: 1px solid #dc030f ;
    color: white;
    padding: 9px 15px;
    font-size: 15px;
    letter-spacing: 1px;
}

.feature{
    border-top: solid #222 8px;
    padding: 40px 10px;
    
}

.feature__detail{
    text-align: center;
    
}
.feature__detail__2{
    text-align: center;
}


.feature__title{
    font-weight: 600;
    font-size: 25px;
}

.feature__subtitle{
    font-weight: 400;
    font-size: 15px;
    margin: 10px 1px;

}



.feature__image__container{
    width: 100%;
    position: relative;
    
}

.feature__image{
    width: 100%;
    margin-top: -13px;
}

.feature__bg__video__container{
    width: 100%;
    position: absolute;
    top: 17%;
    height: 100%;
    left: 13%;
    max-width: 73%;
    max-height: 54%;
    z-index: -2;
}

.feature__background{
    width: 100%;
}

.feature__2__poster__container{
    position: absolute;
    bottom: 10%;
    left: 15%;
    width: 100%;
    max-width: 250px;
    display: flex;
    align-items: center;
    background-color: black;
    border: 2px solid rgb(61, 54, 54);
    border-radius: 10px;
    height: 60px;
    padding: 5px 10px ;
    gap:10px
}

.poster__container{
    width: 17%;
    height: 100%;
}

.poster{
    width: 100%;
    height: 100%;
}

.poster__details{
    width: 50%;

}

.poster__details>h4{
    font-size: 13px;
    font-weight: 500;
}
.poster__details>h6{
    font-size: 12px;
    font-weight: 400;
    color: rgb(47, 96, 255);
    transform: translate(-8%,0);
}


.download__gif__container{
    width: 20%;
    height: 100%;

}

.gif{
    width: 90%;
    height: 100%;
}

.feature__3__background{
    height: 100%;
    width:60%;
    top: 6%;
    left: 19%;
}

.FAQ__list__container{
    border-top: solid #222 8px;
    padding-bottom: 30px;
}

.FAQ__netflix{
    width: 100%;
}

.FAQ__title{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 18px;
    background-color: #303030;
    border: 1px solid #303030;
    color: white;
}

.FAQ__visible{
    background-color: #303030;
    border-top: 1px solid black;
    
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.FAQ__visible>p{
    margin: 20px ;
}

.FAQ__heading{
    font-size: 25px;
    text-align: center;
    font-weight: 600;
    margin: 25px 30px;
}

.FAQ__list{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.get__started{
    margin: 30px 20px;
    
    align-items: center;
    justify-content: center;
    text-align: center;
    
}
.get__started>h3{
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
    margin: 10px 10px;
}

.get__started>p{
    color: #FFA00A;
    font-size: 15px;
    transform: translateX(-26%);
}

footer{
    border-top: solid #222 8px;  
    padding:2rem 1rem;
    color: #757575;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__row__1>h4{
    transform: translateX(6%);
    font-size: 16px;
    font-weight: 500;
}
.footer__row__2{
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;   
    justify-content: space-around;
    gap: 10px;
}

.column__1{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.column__2{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.column__4{
    display: flex;
    flex-direction: column;
    transform: translateX(-40%);
    gap: 15px;
}
.column__3{
    display: flex;
    flex-direction: column;
    transform: translateX(-1%);
    gap: 15px;
}



.footer__row__3>.dropdown__container{
    width: fit-content;
    border: solid 1px #757575;
    
}
.footer__row__3>.dropdown__container>.language__drop__down{
    color: #757575;
}


.footer__row__3>.dropdown__container{
    padding: 10px 20px;
}


.footer__row__3,.footer__row__4{
    padding-left: 21px;
}


@media (min-width:768px){
    .navbar{
        padding: 20px 20px;
    }
    .navbar__brand{
        width: 150px;
    }
    .signin__button{
        padding: 10px 20px;
        font-size: 17px;
        font-weight: 500;
        /* border: none; */
    }
    .dropdown__container{
        padding: 8px 15px;
    }
    .navbar__nav__items{
       margin-top: 5px;
        gap: 20px;
    }
    .hero__bg__image{
        height: 900px;
    }
    .hero__bg__overlay{
        height: 900px;
    }

    .hero__card{
        top: 35%;
        left: 30%;
        transform: translate(-20% ,-20%);
        font-size: 17px;
    }
    .hero__title{
        font-size: 45px;
    }

    .language__drop__down{
        font-size: 18px;
    }

    .hero__subtitle, .hero__description{
        font-weight: 600;
        font-size: 22px;
    }


    .email__input{
        padding-left: 10px;
    }
    .feature__title{
        font-size: 40px;
    }

    .feature__subtitle{
        font-size: 20px;
    }

    .feature{
        padding: 70px 70px;
    }

    .feature__title{
        font-size: 35px;
    }

    .feature__subtitle{
        font-size: 18px;
    }

    .feature__2__poster__container{
        max-width: 440px;
        height: 90px;
    }

    .poster__details>h4{
        font-size: 16px;
        transform: translate(-10%,0%);
    }
    .poster__details>h6{
        font-size: 14px;
        transform: translate(-17%,0%);
    }
    .poster__container{
        width: 15%;
        height: 100%;
    }
    .gif{
        width: 50%;
        height: 50px;
        transform: translate(100%,20%);
    }

    .FAQ__title{
        font-size: 20px;
    }
    .FAQ__heading{
        font-size: 35px;
    }

    .FAQ__list__container{
        padding-top: 50px;
    }

    .FAQ__list{
        padding: 10px 100px;
    }

    .get__started{
        width: 75%;
        transform: translateX(17%);
        
    }

    .get__started>h3{
        font-size: 25px;
    }

    .get__started>p{
        font-size: 20px;
        transform: translateX(-30%);
    }

    footer{
        padding-bottom: 60px;
    }
    .footer__row__1{
        padding-top: 50px;
        padding-left: 25px;
    }
    .footer__row__2{
        padding: 20px 50px;
      
    }

    .footer__row__3,.footer__row__4{
        padding-left: 67px;
    }

}


@media (min-width:1024px){
    .navbar{
        padding: 20px 20px;
    }
    .navbar__brand{
        width: 150px;
    }
    .signin__button{
        padding: 12px 20px;
        font-size: 17px;
        font-weight: 500;
        border: none;
    }
    .dropdown__container{
        padding: 8px 10px;
        border-radius: 2px;
    }
    .navbar__nav__items{
       margin-top: 5px;
       margin-right: 15px;
        gap: 30px;
    }

    .hero__bg__image{
        width: 100%;
        height: 700px;
        object-fit: cover;
    }
    .hero__bg__overlay{
        height: 700px;
    }

    .hero__card{
        top: 40%;
        left: 30%;
        transform: translate(-20% ,-20%);
        font-size: 17px;
    }

    .email__form__container{
        
        flex-direction: row;
        gap: 0;
    }
    .email__input{
        font-size: 17px;
        font-weight: 500;
    }

    .form__container{
        width: 50%;
    }

    .primary__button{
        height: 50px;
        transform: translate(-1px,-5px);
    }


    .feature__detail{
        text-align: left;
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: space-between;
        padding: 0 40px;
    }

    .feature__image__container{
        margin-top: -40px;
        max-width: 500px;
    }

    .feature__title{
        font-size: 50px;
    }
    .feature__subtitle{
        font-size: 25px;
    }

    /* .feature__detail:nth-child(even){
        flex-direction: row-reverse;
    } */

    .feature__detail__2{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 40px;
        padding: 0 40px;
    }
    .feature__2__poster__container{
        width: 340px;
    }
    .poster__details>h4{
        font-size: 16px;
        
    }
    .poster__details>h6{
        font-size: 14px;
       
    }
    .poster__details{
        text-align: center;
    }
    .feature__detail__2{
        text-align: left;
    }
    .gif{
        height: 60%;
        width: 60%;
        transform: translate(90%,30%);
    }
    .feature__3__image__container{
        padding-top: 50px;
    }
    .feature__3__background{
        padding-top:50px ;
    }
    .feature__cartoon{
        margin-top: 20px;
    }
    .FAQ__heading{
        font-size: 45px;
        font-weight: 700;
    }

    .FAQ__list{
        padding: 10px 250px;
    }

    .FAQ__title{
        font-size: 25px;
        letter-spacing: 1px;
        padding: 20px;
    }
    
    .FAQ__visible>p{
        font-size: x-large;
        font-weight: 400;

    }
    .get__started{
        margin-top: 60px;
    }
    .get__started>h3{
        font-size: 20px;
    }

    .get__started>p{
        font-size: 15px;
        transform: translateX(-25%);
    }


    footer{
        padding-top: 80px;
    }
    .footer__row__1{
        padding-left: 140px;
    }
    .footer__row__2{
        padding: 20px 150px;
    }

    .footer__row__3,.footer__row__4{
        padding-left: 213px ;
    }
}   

