*{
    margin: 0;
    padding: 0;
}
html,body{
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000000;
}
:root {
    --black: #000000;
    --light: #E8F0FE;
    --red: #E50914;
    --white: #FFFFFF;
    --checkbox: #737373;
    --dark: #6F6F6F;
}
::-webkit-scrollbar {
    width: 1px;
    height: 1px;
}
::-webkit-scrollbar-track {
    background: #000000;
}

.alert{
	--bs-alert-bg: transparent;
    --bs-alert-padding-x: 1rem;
    --bs-alert-padding-y: 1rem;
    --bs-alert-margin-bottom: 1rem;
    --bs-alert-color: inherit;
    --bs-alert-border-color: transparent;
    --bs-alert-border: 1px solid var(--bs-alert-border-color);
    --bs-alert-border-radius: 0.375rem;
	position: relative;
	padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
	margin-bottom: var(--bs-alert-margin-bottom);
	color: var(--bs-alert-color);
	background-color: var(--bs-alert-bg);
	border: var(--bs-alert-border);
	border-radius: var(--bs-alert-border-radius);
	text-align: center;
    margin: 0 auto 10px auto;
    max-width: 500px;
    width: 100%;
}
.alert-success {
    --bs-alert-color: #0f5132;
    --bs-alert-bg: #d1e7dd;
    --bs-alert-border-color: #badbcc;
}
.alert-danger {
    --bs-alert-color: #842029;
    --bs-alert-bg: #f8d7da;
    --bs-alert-border-color: #f5c2c7;
}

.wrapper{
    width: 80%;
    /* height: 100vh; */
    margin: auto;
}
.logo{
    padding: 30px 0;
}
.logo img{
	height: 40px;
}
.banner_section{
    width: 70%;
    margin: auto;
}
.banner_section .movie_img{
    width: 100%;
}

.movie{
	position: relative;
	width: 100%;
	height: 100%;
}
.movie::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80%;
    background: linear-gradient(to top, black, transparent);
}
.banner_info{
	margin-top: -100px;
    position: relative;
    z-index: 1;
    width: 90%;
    margin: -100px auto 0;
}
.banner_info h3{
    color: #fff;
    font-size: 40px;
    font-weight: 800;
}
.play_btn{
    background-color: #fff;
    border: 0;
    padding: 10px 50px;
    font-size: 18px;
    font-weight: 700;
/*    margin-top: 20px;*/
    border-radius: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
}
.play_btn img{
    width: 20px;
    margin: 0 10px 0 0;
}
.banner_button{
    margin-top: 20px;
    display: flex;
/*    justify-content: space-between;*/
}
.banner_description{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
.banner_top_description{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.banner_top_description h4{
    border: 1px solid red;
    color: red;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 2px 5px;
}
.banner_top_description h5{
    color: #fff;
    font-size: 14px;
    padding-left: 6px;
}
.banner_description .movie_description{
    color: #fff;
    font-size: 16px;
    padding-top: 20px;
    width: 100%;
    max-width: 600px;
    line-height: 1.4;
}
.banner_first_right_section{
/*	padding-top: 20px;	*/
	margin: auto 20px;
}
/*.banner_first_right_section h4{
    color: #777;
    padding: 8px 0;
    margin-bottom: 10px;
    font-weight: 500;
}
.banner_first_right_section h4 span{
    color: #fff;
    font-weight: 700;
    background:#333;
    padding: 6px 12px;
    margin: 0 2px;
    border-radius: 25px;
}*/
.banner_second_right_section{
	/*padding-top: 20px;	*/
}
.banner_second_right_section h4{
    color: #777;
    padding: 8px 0;
    margin-bottom: 10px;
    font-weight: 500;
}
.banner_second_right_section h4 span{
    color: #fff;
    font-weight: 700;
    background:#333;
    padding: 6px 12px;
    margin: 0 2px 15px 2px;
    border-radius: 25px;
    display: inline-block;
}
.footer{
    background-color: #282828;
    padding: 20px 0;
    margin-top: 50px;
}
.footer .wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer .wrapper ul{
    display: flex;
}
.footer .wrapper ul li{
    list-style-type: none;
    position: relative;
}
.footer .wrapper ul li::after{
    content: "";
    position: absolute;
    right: -10%;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #fff;
}
.footer .wrapper ul li:last-child:after{
    content: none;
}
.footer .wrapper ul li a{
    text-decoration: none;
    color: #fff;
    margin: 0 0 0 20px;
}
.footer .wrapper h3{
    margin: 0;
    color: #fff;
    font-size: 16px;
}
.movie_popup{
    width: 450px;
    height: auto;
    background-color: #282828;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
    padding: 30px;
    transition: all .5s;
    display: none;

}
.movie_popup h3{
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
.movie_popup form{
    display: flex;
    justify-content: center;
}
.form_input{
    width: 70%;
    padding: 10px;
    outline: none;
    box-shadow: none;
    border: 0;
}
.submit_btn{
    padding: 8px 20px;
    border: 0;
    margin: 0 10px 0;
    background-color: red;
    color: #fff;
    font-weight: 700;
}
.popup_close{
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(30%, -40%);
    z-index: 100;
    cursor: pointer;
}
.popup_close img{
    width: 30px;
}
.not_found{
    color: white;
    padding-top: 100px;
    padding-bottom: 100px;
    inline-size: max-content;
}
	
/************************************ landing ***************************************/
.login_logo {
    padding: 19px 60px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.login_logo .logo {
    flex-grow: 1;
}
.sign_in_btn {
    padding: 5px 27px;
    background-color: var(--red);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
}

.sign_in_btn:hover {
    color: var(--white);
}

.index_bg {
    width: 100%;
    height: auto;
    background-image: url("../img/login_bg.png");
    background-repeat: no-repeat;
    position: relative;
}

.index_bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.index_first_content {
    padding: 250px 0;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.index_first_content h3 {
    color: var(--white);
    font-size: 65px;
    text-align: center;
    font-weight: 700;
    line-height: 75px;
    margin-bottom: 50px;
}

.join_now_btn {
    padding: 14px 141px;
    background-color: var(--red);
    color: var(--white);
    text-decoration: none;
    font-size: 26px;
    font-weight: 700;
}

.join_now_btn:hover {
    color: var(--white);
}

.index_second_content {
    padding: 100px 0;
    background-color: var(--black);
    position: relative;
    z-index: 1;
}

.index_content_text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: auto;
}

.index_left_content h3 {
    font-size: 34px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 26px;
}

.index_left_content h4 {
    font-size: 26px;
    color: #D2D2D2;
    max-width: 426px;
    margin-bottom: 66px;
}

.watch_now_btn {
    padding: 14px 51px;
    background-color: var(--red);
    color: var(--white);
    font-size: 26px;
    text-decoration: none;
    font-weight: 700;
}

.watch_now_btn:hover {
    color: var(--white);
}

.index_right_img img {
    width: 90%;
}

.index_left_content{
    flex-grow: 1;
    flex-shrink: 0;
}
.index_right_img{
    text-align: right;
}


/************************************ end_landing ***************************************/



@media (max-width: 1399.98px){}
@media (max-width: 1199.98px){
    .logo{
        position: relative;
    }
    .banner_description{
        flex-direction: column;
    }
    .banner_description p{
        padding-bottom: 20px;
    }
}
@media (max-width: 991.98px){
    .banner_info h3 {
        font-size: 32px;
    }
    .play_btn {
/*        margin-top: 10px;*/
    }
    .footer .wrapper h3 {
        font-size: 14px;
    }
}
@media (max-width: 767.98px){
    .banner_info h3 {
        font-size: 24px;
    }
    .play_btn{
        padding: 8px 30px;
        font-size: 16px;
    }
    .banner_section{
        width: 100%;
    }
    .banner_description p{
        width: 100%;
    }
    .banner_description {
        margin-top: 20px;
    }
    .logo img{
        width: 150px;
    }
}

@media (max-width: 575.98px){
    .play_btn {
        padding: 6px 24px;
        font-size: 14px;
    }
    .play_btn img{
        width: 15px;
    }
    .banner_description p {
        font-size: 14px;
    }
    /*.banner_first_right_section h4 {
        font-size: 14px;
    }*/
    .banner_second_right_section h4 {
        font-size: 14px;
    }
    .footer .wrapper{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer .wrapper ul{
        margin-top: 20px;
    }
    .footer .wrapper ul li a {
        text-decoration: none;
        color: #fff;
        margin: 20px 10px 0 0px;
    }
    .footer .wrapper ul li::after {
        content: "";
        position: absolute;
        right: 0%;
    }
    .movie_popup {
        width: 300px;
        padding: 20px;
    }
}
@media (max-width: 425px){}