* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'HelveticaNowText-Medium';
    background-color: var(--black);
}

:root {
    --black: #0D0D0D;
    --red: #E50914;
    --white: #ffffff;
    --gray: #1E1E1E;
    --text-gray: #1E1E1E;
    --dark-black:#000000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
}
::-webkit-scrollbar {
    width: 1px;
    height: 1px;
}
::-webkit-scrollbar-track {
    background: #000000;
}
.wrapper {
    width: 90%;
    margin: auto;
}

.logo img {
    height: 30px;
}

.select-menu {
    max-width: 330px;
    margin: 50px auto;
}
.header_section{
    display: flex;
    align-items: center;
}
.header_action{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.wrapper-dropdown {
    position: relative;
    text-align: left;
    color: var(--white);
    background-color: var(--dark-black);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid var(--white);
    padding: 8px 25px;
    width: 100px;
}
.scrollable-menu {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}
.arrow {
    float: right;
    margin-top: 5px;
}
svg {
    transition: all 0.3s;
}

.deactive {
    background-color: #EDEDED;
    color: #8B8B8B;
}
    
.wrapper-dropdown::before {
    position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -2px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #fff transparent;
}
.rotated {
    transform: rotate(-180deg);
}
.wrapper-dropdown .dropdown {
    transition: 0.3s;
    position: absolute;
    top: 120%;
    right: 0;
    left: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 99;
    border-radius: 15px;
    box-shadow: inherit;
    background: inherit;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
    visibility: hidden;
    width: 350px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    white-space: nowrap;
}

.wrapper-dropdown .dropdown li {
    padding: 0 15px;
    line-height: 45px;
    overflow: hidden;
    font-size: 14px;
}
.wrapper-dropdown .dropdown li:last-child {
    border-bottom: none;
}
.dropdown {
    padding: 0.5rem !important;
}
.wrapper-dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;
    background-color: #000000;
    border: 1px solid #525252;
    border-radius: 0;
}
.genres_section{
    margin-right: 10px;
}
.search_result form{
    display: flex;
    align-items: center;
}
.search_result form .search{
    border: 1px solid var(--white);
    padding: 10px 10px;
    display: flex;
    align-items: center;
    width: 300px;
}
.input_box{
    background-color: transparent !important;
    border: 0;
    box-shadow: none;
    outline: none;
    color: var(--white);
    padding-left: 10px;
    font-weight: 600;
    width: 100%;
}
.input_box::placeholder{
    color: var(--white);
}
.search img{
    width: 15px;
}
.result_btn{
    margin-left: 8px;
    padding: 10px 26px;
    background-color: var(--red);
    border: 1px solid var(--red);
    color: var(--white);
    border: 0;
    font-size: 16px;
    text-decoration: none;
}
.movies_section{
    display: grid;
    grid-template-columns: repeat(8,1fr);
    gap: 10px;
    padding: 30px 0;
}
.movie_box img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}
.movie_box{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.movie_box::after{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 0%;
    background-image: linear-gradient(to bottom, rgba(255,0,0,0), rgba(0,0,0,1));
    transition: all .5s;
}
.movie_box:hover::after{
    height: 40%;
}
.movie_box .movie_name{
    color: var(--white);
    font-family: 'HelveticaNowText-Black';
    position: absolute;
    bottom: 0;
    padding: 0px 15px;
    opacity: 0;
    z-index: 2;
    transition: all .5s;

}
.movie_box:hover .movie_name{
    opacity: 1;
    padding: 28px 15px;

}
.footer{
    background-color: #282828;
    padding: 20px 0;
}
.footer .footer_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}
.footer .footer_wrapper ul{
    display: flex;
}
.footer .footer_wrapper ul li{
    list-style-type: none;
    position: relative;
}
.footer .footer_wrapper ul li::after{
    content: "";
    position: absolute;
    right: -10%;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #fff;
}
.footer .footer_wrapper ul li:last-child:after{
    content: none;
}
.footer .footer_wrapper ul li a{
    text-decoration: none;
    color: #fff;
    margin: 0 0 0 20px;
}
.footer .footer_wrapper h3{
    margin: 0;
    color: #fff;
    font-size: 16px;
}
.details_section{
    width: 60%;
    margin: auto;
    padding: 50px 0;
}
.movie_banner img{
    width: 213px;
    height: 300px;
    border-radius: 5px;
}
.movie_banne_details h1{
    font-family: 'HelveticaNowText-Black';
    color: var(--white);
    font-size: 70px;
}
.first_section{
    display: flex;
    flex-direction: row;
}
.movie_banne_details{
    margin-left: 45px;
}
.directed{
    margin-top: 7px;
    display: flex;
}
.directed h4{
    border: 1px solid var(--red);
    color: var(--red);
    display: inline-block;
    font-size: 14px;
    padding: 2px 5px;
    font-weight: normal;
    margin-right: 10px;
}
.main_char{
    color: var(--white);
    font-size: 18px;
    font-weight: normal;
    display: inline-block;
    
}
.starring{
    margin: 18px 0;
}
.red_line{
    border-right: 1px solid var(--red);
    padding-right: 10px;
    margin-right: 6px;
}
.license_qnquiry{
    padding: 12px 25px;
    background-color: var(--red);
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
    border: 0;
    cursor: pointer;
}
.large_play_btn{
    padding: 14px 25px;
    background-color: var(--white);
    color: var(--black);
    font-size: 20px;
    font-weight: 900;
    border: 0;
    cursor: pointer;
    border-radius: 0;
    margin-left: 10px;
}
.small_play_btn{
    padding: 12px 25px;
    background-color: var(--white);
    color: var(--black);
    font-size: 20px;
    font-weight: 900;
    border: 0;
    cursor: pointer;
    border-radius: 0;
    margin-left: 10px;               
}
.more_section{
    margin-top: 40px;
}
.second_section h3{
    color: var(--white);
    font-size: 20px;
    font-weight: normal;
    padding-bottom: 16px;
    border-bottom: 1px solid #6B6B6B;
}
.movie_video{
    margin: 20px 0;
    text-align: center;
}
.movie_video img{
    width: 80%;
}
.movie_description{
    color: #D0D0D0;
    line-height: 25px;
}
.awards{
    margin: 10px 0;
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 10px;
}
.awards img{
    width: 120px;
    height: 120px;
}
.movie_scene_images{
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
.movie_scene_images img{
    width: 100%;
    border-radius: 5px;
}
.scanner_modal{
    width: 380px;
    height: auto;
    padding: 38px 35px;
    background-color: #1E1E1E;
    border: 1px solid #878787;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 100;
    display: none;
}
.form_box label{
    color: var(--white);
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}
.form_input{
    width: 92%;
    color: var(--white);
    background-color: #282828;
    border: 1px solid #515151;
    border-radius: 5px;
    padding: 14px;
    outline: none;
    box-shadow: none;
}
.form_box{
    margin-bottom: 15px;
}
.scanner_btn{
    font-weight: 500;
    font-size: 16px;
}
.scanner_btn_section{
    text-align: center;
}
.modal_close{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
}
.back_arrow{
    position: fixed;
    top: 12%;
    left: 18%;
}
.button_section{
   display: flex;
   align-items: center;
   margin-top: 20px;
}
@media (max-width: 1399.98px){
    .movies_section {
        grid-template-columns: repeat(6, 1fr);
    }
    .details_section {
        width: 80%;
    }
    .movie_banne_details h1 {
        color: var(--white);
    }
    .main_char {
        font-size: 16px;
    }
    .license_qnquiry {
        padding: 10px 25px;
        font-size: 18px;
    }
    .awards {
        grid-template-columns: repeat(6, 1fr);
    }
    .back_arrow {
        top: 15%;
        left: 8%;
    }
}
@media (max-width: 1199.98px){
    .logo img{
        height: 20px;
    }
    .header_action {
        margin-left: 20px;
    }
    .movies_section {
        grid-template-columns: repeat(5, 1fr);
        padding: 40px 0;
    }
    .details_section {
        width: 100%;
    }
    .movie_banne_details h1 {
        font-size: 60px;
    }
    .starring {
        margin: 16px 0;
    }
    .more_section {
        margin-top: 30px;
    }
    .second_section h3 {
        font-size: 18px;
        padding-bottom: 10px;
    }
    .movie_video {
        margin: 14px 0;
    }
    .back_arrow {
        display: none;
    }
}
@media (max-width: 991.98px){
    .search_result form .search {
        width: 250px;
    }
    .movies_section {
        grid-template-columns: repeat(4, 1fr);
        padding: 30px 0;
    }
    .details_section{
        padding-top: 30px;
    }
    .movie_banne_details {
        margin-left: 28px;
    }
    .movie_banne_details h1 {
        font-size: 50px;
    }
    .awards {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (max-width: 767.98px){
    .search_result form .search {
        width: 200px;
    }
    .movie_box img {
        height: 250px;
    }
    .movie_box .movie_name {
        padding: 12px 7px;
        font-size: 16px;
    }
    .footer .footer_wrapper h3 {
        font-size: 14px;
    }
    .footer .footer_wrapper ul li a{
        font-size: 14px;
    }
    .movie_banne_details h1 {
        font-size: 45px;
    }
    .main_char {
        font-size: 14px;
    }
    .license_qnquiry {
        font-size: 16px;
        margin-top: 20px;
    }
   
    
}
@media (max-width: 575.98px){
    .header_section{
        flex-direction: column;
        align-items: flex-start;
    }
    .header_action {
        margin-left: 0;
        margin-top: 10px;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .search_result {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    .search_result form .search {
        width: 100%;
    }
    .genres_section{
        width: 100%;
    }
    .wrapper-dropdown{
        width: auto;
        padding: 8px 10px;
    }
    .movies_section {
        grid-template-columns: repeat(3, 1fr);
    }
    .movie_box img {
        height: auto;
    }
    .movie_box .movie_name {
        font-size: 14px;
    }
    .footer .footer_wrapper{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer .footer_wrapper ul li a {
        margin: 0 10px 0 0;
    }
    .footer .footer_wrapper ul li::after {
        right: 3%;
    }
    .footer {
        padding: 15px 0;
    }
    .footer_wrapper ul{
        padding-top: 5px;
    }
    .first_section {
        flex-direction: column;
    }
    .movie_banne_details {
        margin-left: 0;
    }
    .movie_banne_details h1 {
        font-size: 36px;
    }
    .starring {
        margin: 12px 0;
    }
    .movie_banner img {
        width: 150px;
        height: 200px;
    }
    .more_section {
        margin-top: 20px;
    }
    .movie_video img {
        width: 100%;
    }
    .movie_description {
        line-height: 24px;
        font-size: 14px;
    }
    .awards img {
        width: 80px;
        height: 80px;
    }
    .awards {
        grid-template-columns: repeat(3, 1fr);
    }
    .movie_scene_images {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    .scanner_modal {
        width: 300px;
        padding: 38px 20px;
    }
    .form_input {
        padding: 10px;
    }
    .sub_box_status {
        padding: 8px 28px;
        background-color: #CCF3D0;
        color: #008C0E;
        font-size: 16px;
        font-weight: 500;
        border-radius: 30px;
        display: inline-block;
    }

    
}
@media (max-width: 425px){}