*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: rgba(0,0,0,255);
}
.section1{
    width: 100%;
    height: 85vh;
}
.sec-cont1 {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.sec-cont1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/netflix_background.png);
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}
.navbar{
    display: flex;
    align-items: flex-start;
    padding: 0px 120px;
    padding-top: 15px;
}
@media screen and (max-width:970px){
    .navbar{
        padding: 0px 30px;
        padding-top: 15px;
    }
}
.navbar h1{
    color: red;
    font-weight: 800;
}
.navbar1{
    display: flex;
    gap: 10px;
}
.navbar1 select{
    background-color: transparent;
    color: white;
    padding: 5px;
    width: 13vh;
    border-radius: 5px;
}
.navbar1 a{
    background-color: red;
    color: white;
    border: none;
    text-decoration: none;
    padding: 5px;
    border-radius: 5px;
    width: 8vh;
    text-align: center;
    font-weight: 600;
    transition: 0.3s ease-out;
    cursor: pointer;
}
.navbar1 a:hover{
    background-color: rgb(211, 15, 15);;
}
@media screen and (max-width:700px){
    .navbar{
        padding: 0px 50px;
        padding-top: 15px;
    }
}
@media screen and (max-width:560px){
    .navbar{
        padding: 0px 40px;
        padding-top: 15px;
    }
    .navbar h1{
        font-size: 25px;
    }
    .navbar1 select{
        width: 11vh;
    }
}
@media screen and (max-width: 430px){
    .navbar1 select {
        width: 6vh;
    }
}
@media screen and (max-width:375px){
    .navbar{
        padding: 0 30px;
        padding-top: 15px;
    }
    .navbar select{
        width: 9vh;
        height: 5vh;
    }
    .navbar a{
        width: 10vh;
    }
    .head .input p{
        font-size: 15px;
    }
    .section1 .sec-cont1 .head{
        position: absolute;
        left: 10%;
        transform: translateY(-10%);
    }
}
.head{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateY(-35%);
    transform: translateX(-50%);
    gap: 18px;
}
.head h1{
    text-align: center;
    font-size: 60px;
    font-weight: 900;
}
.head h4{
    font-weight: 500;
}
.input{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    height: 100%;
    position: relative;
}
.input .input-cont{
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}
.input p{
    position: absolute;
    top: 110%;
    color: red;
    font-size: 17px;
    z-index: 1;
    width: 100%;
}
.input input{
    width: 40vh;
    height: 5vh;
    background-color: transparent;
    border: 1px solid rgb(149, 148, 148);
    padding: 20px;
    color: rgb(172, 170, 170);
    border-radius: 5px;
    font-size: 18px;
}
.input button{
    width: 22vh;
    height: 5vh;
    border: none;
    background-color: red;
    color: white;
    font-size: 22px;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.3s ease-out;
}
.input button:hover{
    background-color: rgb(211, 15, 15);
}
@media screen and (max-width:1205px){
    .head h1{
        font-size: 40px;
        font-weight: 600;
    }
    .head h4{
        font-weight: 300;
    }
}
@media screen and (max-width:375px){
    .head h4{
        text-align: center;
    }
}
@media screen and (max-width:1053px){
    .head h6{
        text-align: center;
    }
}
@media screen and (max-width:540px){
    .input input{
        width: 25vh;
    }
    .input button{
        width: 18vh;
        font-size: 18px;
        font-weight: 500;
    }
}
@media screen and (max-width: 400px){
    .head h1{
        font-size: 32px;
        font-weight: 500;
    }
    .head h4{
        font-weight: 200;
        font-size: 18px;
    }
    .head h6{
        width: 30vh;
        font-size: 14px;
    }
    .input input{
        width: 20vh;
    }
}
.section2{
    width: 100%;
    height: 100%;
    padding: 0px 120px;
    padding-top: 15px;
    position: relative;
}
@media screen and (max-width:970px){
    .section2{
        padding: 0px 30px;
        padding-top: 15px;
    }
}
.section2 h3{
    color: white;
}
.section2 img{
    width: 200px;
    height: 300px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.section2 img:hover{
    transform: scale(0.9);
}
.choose-film{
    width: 650px;
    height: 600px;
    background-color: #2d2d2d;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 15px;
    border: 1px solid rgb(99, 98, 98);
}
@media screen and (max-width:900px){
    .choose-film{
        width: 600px;
        height: 550px;
    }
}
@media screen and (max-width:700px){
    .choose-film{
        width: 550px;
        height: 500px;
    }
    .choose-film-cont2 h2{
    font-size: 20px;
    }
    .choose-film-cont2 p{
    font-size: 12px;
    }
}
@media screen and (max-width:580px){
    .choose-film{
        width: 500px;
        height: 450px;
    }
    .choose-film-cont2 h2{
    font-size: 18px;
    }
    .choose-film-cont2 p{
    font-size: 11px;
    }
    .choose-film .closebutton button{
        font-size: 25px;
    }
    .choose-film .choose-film-cont2 .btn1{
        height: 3vh;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media screen and (max-width:515px){
        .choose-film{
            width: 400px;
            height: 425px;
        }
        .choose-film .choose-film-cont2{
            padding: 5px 10px;
        }
    }
@media screen and (max-width:420px){
    .choose-film{
        width: 350px;
        height: 400px;
    }
    .choose-film .choose-film-cont2 .choose-film-cont1{
        gap: 5px;
    }
}
.choose-film.close1{
    display: none;
}
.choose-film img{
    width: 100%;
    opacity: 0.6;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.choose-film-cont2{
    padding: 10px 25px;
}
.choose-film-cont2 h2{
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.choose-film-cont2 p{
    color: white;
}
.choose-film-cont1 p{
    color: lightgray;
    background-color: rgb(81, 79, 79);
    font-size: 12px;
    padding: 5px;
    border-radius: 5px;
}
.choose-film-cont2 .btn1{
    width: 15vh;
    height: 4vh;
    border: none;
    background-color: red;
    color: white;
    font-size: 22px;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.3s ease-out;
}
.choose-film-cont1{
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.closebutton{
    width: 100%;
}
.closebutton button{
    position: absolute;
    left: 93%;
    bottom: 90%;
    border: none;
    background-color: transparent;
    color: white;
    font-size: 30px;
    font-weight: 400;
}
.sideimage1{
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}
.sideimage{
    width: 95%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
}
.sideimage1 #next{
    display: flex;
    position: absolute;
    top: 60%;
    transform: translateY(-60%);
    right: 120px;
    transition: 0.2s;
}
.sideimage1 #back{
    display: flex;
    position: absolute;
    top: 60%;
    transform: translateY(-60%);
    left: 120px;
    transition: 0.2s;
}
.sideimage1 button{
    background-color: rgb(60, 59, 59);
    color: white;
    border: none;
    height: 14vh;
    width: 2vh;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 10;
    padding: 15px;
    border-radius: 20px;
    cursor: pointer;
    z-index: 1;
}
#next:hover{
    background-color: rgb(35, 35, 35);
}
#back:hover{
    background-color: rgb(35, 35, 35);
}
@media screen and (max-width:615px){
    .section2{
    padding: 0px 50px;
    padding-top: 15px;
    }
    .sideimage1 #next{
        right: 25px;
    }
    .sideimage1 #back{
        left: 25px;
    }
}
@media screen and (max-width:400px){
    .section2 img{
        width: 170px;
        height: 230px;
    }
    .sideimage1 button{
        height: 10vh;
        font-size: 25px;
    }
}
@media screen and (max-width: 970px){
    .sideimage1 #next{
        right: 25px;
    }
    .sideimage1 #back{
        left: 25px;
    }
}
.section3{
    width: 100%;
    height: 100%;
    padding: 5px 120px;
    padding-top: 35px;
}
@media screen and (max-width:970px){
    .section3{
        padding: 5px 30px;
        padding-top: 35px;
    }
}
.section3 h3{
    color: white;
}
.sec3-cont1{
    width: 100%;
    display: flex;
    gap: 10px;
    position: relative;
}
.sec3-cont1 .cont1{
    width: 360px;
    height: 270px;
    border-radius: 20px;
    padding: 20px;
    background:linear-gradient(#1a2042,#1f1425);
    position: relative;
}
.cont1 i{
    position: absolute;
    bottom: 20px;
    left: 75%;
    font-size: 50px;
}
@media screen and (max-width: 1050px){
    .cont1 i{
        left: 90%;
    }
}
@media screen and (max-width:790px){
    .cont1 i{
        left: 85%;
        font-size: 45px;
    }
}
@media screen and (max-width:505px){
    .cont1 i{
        left: 80%;
        font-size: 45px;
    }
}
@media screen and (max-width:414px){
    .cont1 i{
        font-size: 40px;
    }
}
@media screen and (max-width:360px){
    .cont1 i{
        font-size: 35px;
    }
}
.sec3-cont1 .cont1 h2{
    color: white;
    font-size: 25px;
}
.sec3-cont1 .cont1 h6{
    color: rgb(203, 201, 201);
    font-size: 15px;
}
@media screen and (max-width:1220px){
    .sec3-cont1 .cont1{
        width: 100%;
    }
    .sec3-cont1{
        display: grid;
        grid-template-columns: auto auto;
    }
}
@media screen and (max-width:1050px){
    .sec3-cont1{
        display: grid;
        grid-template-columns: auto;
    }
    .sec3-cont1 .cont1{
        width: 100%;
        height: 200px;
    }
}
@media screen and (max-width:565px){
    .sec3-cont1 .cont1 h2{
        font-size: 20px;
    }
    .sec3-cont1 .cont1 h6{
        font-size: 12px;
    }
}
.section4{
    width: 100%;
    height: 100%;
    padding: 5px 120px;
    padding-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
@media screen and (max-width:970px){
    .section4{
        padding: 5px 30px;
        padding-top: 35px;
    }
}
.section4 h3{
    color: white;
}
.sec4-cont1{
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.sec4-cont1 .cont2{
    display: flex;
    width: 100%;
    background-color: #2d2d2d;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    transition: 0.3s;
}
.sec4-cont1 .cont2:hover{
    background-color: #545353;
}
.sec4-cont1 .cont2 h1{
    color: white;
    font-size: 26px;
}
#h1-1, #h1-2, #h1-3, #h1-4, #h1-5, #h1-6, #h1-7{
    font-size: 45px;
    cursor: pointer;
}
.cont2-slider{
    background-color: #2d2d2d;
    padding: 20px 45px;
    border-top: 1px solid black;
    display: none;
    flex-direction: column;
    gap: 20px;
}
.cont2-slider.active{
    display: flex;
}
.cont2-slider h2{
    color: white;
    font-size: 22px;
}
@media screen and (max-width:640px){
    #h1-1, #h1-2, #h1-3, #h1-4, #h1-5, #h1-6, #h1-7{
    font-size: 30px;
    }
    .sec4-cont1 .cont2 h1{
    font-size: 20px;
    }
    .cont2-slider h2{
    color: white;
    font-size: 18px;
    }
}
@media screen and (max-width:466px){
    #h1-1, #h1-2, #h1-3, #h1-4, #h1-5, #h1-6, #h1-7{
    font-size: 25px;
    }
    .sec4-cont1 .cont2 h1{
    font-size: 17px;
    }
    .sec4-cont1 .cont2{
    padding: 10px 15px;
    }
    .cont2-slider h2{
    color: white;
    font-size: 15px;
    }
    .cont2-slider{
        padding: 15px 30px;
    }
}
@media screen and (max-width:390px){
    #h1-1, #h1-2, #h1-3, #h1-4, #h1-5, #h1-6, #h1-7{
    font-size: 20px;
    }
    .sec4-cont1 .cont2 h1{
    font-size: 15px;
    }
    .sec4-cont1 .cont2{
    padding: 8px 10px;
    }
    .cont2-slider h2{
    color: white;
    font-size: 12px;
    }
    .cont2-slider{
        padding: 10px 25px;
    }
}
.section5{
    padding: 5px;
    padding-top: 55px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.section5 h5{
    color: white;
    font-size: 17px;
}
.section5 .input #email{
    width: 60vh;
}
@media screen and (max-width:890px){
    .section5 .input #email{
        width: 50vh;
    }
}
@media screen and (max-width:700px){
    .section5 .input #email{
        width: 40vh;
    }
}
@media screen and (max-width:590px){
    .section5 .input{
        display: flex;
        flex-direction: column;
    }
    .section5 h5{
        width: 55vh;
    }
}
@media screen and (max-width:545px){
    .section5 h5{
        width: 40vh;
    }
}
.section6{
    width: 100%;
    height: 100%;
    padding: 40px 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media screen and (max-width:970px){
    .section6{
        padding: 5px 30px;
        padding-top: 35px;
    }
}
.section6 select{
    background-color: transparent;
    color: white;
    padding: 5px;
    width: 13vh;
    border-radius: 5px;
}
.section6 a,p{
    color: gray;
}
.section6 span a{
    color: blue;
}
.sec6-cont1{
    display: flex;
    flex-direction: row;
    gap: 23vh;
}
.sec6-cont2{
    display: flex;
    flex-direction: column;
}
.section6 p{
    font-size: 14px;
}
@media screen and (max-width:955px){
    .sec6-cont1{
        gap: 10vh;
    }
}
@media screen and (max-width:850px){
    .sec6-cont1{
        display: grid;
        grid-template-columns: auto auto;
        width: 100%;
    }
}