*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
.main{
    width: 100%;
    display: flex;
    position: relative;
    background-color: rgb(21, 21, 21);
}
.nav{
    width: 6%;
    height: 100vh;
    background-color: rgb(21, 21, 21);
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    row-gap: 200px;
    position: fixed;
    z-index: 1000;
    transition: width 0.3s ease, z-index 0.3s ease; 
}
.logo{
    width: 80%;
    display: flex;
    justify-content: center;
    transition: all 0.5s ease;
}
.logo img{
    width: 90px;
    height: 60px;
    margin-top: 10px;
    margin-left: 20px;
}
.navbar{
    width: 100%;
    position: absolute;
    top: 20px;
    bottom: 0;
    height: 100%;
    overflow: hidden;
    transition: width 0.2s linear;
    /* box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1); */
    background: linear-gradient(to right, black, rgb(12, 12, 12), transparent);
    left: 0;
}
.mens a{
    position: relative;
    color: rgb(166, 164, 164);
    font-size: 15px;
    text-decoration: none;
    display: table;
    width: 300px;
    padding: 10px;
}
.mens .fa{
    position: relative;
    width: 50px;
    height: 40px;
    color: rgb(166, 164, 164);
    top: 10px;
    font-size: 20px;
    text-align: center;
}
.menu{
    margin-top: 40px;
    margin-left: 25px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style-type: none;
    font-size: 20px;
    cursor: pointer;
} 
.menu-text{
    position: relative;
    top: 12px;
    margin-left: 10px;
    font-size: 20px;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: capitalize;
    transition: transform 0.5s ease;
}
.mens a:hover{
    background: transparent;
    color: white;
    transform: scale(1.15);
}
.mens .fa:hover{
    background: transparent;
    color: white;
    transform: scale(1.15);
}
.navbar:hover{
    width: 280px;
    transition: all 0.5s ease;
}


/* banner */
.ban{
    width: 100%;
    height: 93vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: red;
    overflow: hidden;
}
.banrap1{
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(21, 21, 21) 6%, transparent, transparent, transparent, transparent);
    position: absolute;
}
.banrap2{
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(21, 21, 21) 1%, transparent);
    position: absolute;
} 
.ban-vid{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
video{
    object-fit: contain;
    overflow-clip-margin: content-box;
    overflow: clip;
} 


/* movie */
.body{
    width: 99.5%;
    height: 390vh;
    margin-left: 0;
}
.movie-head{
    width: 82%;
    position: absolute;
    top: 6%;
    left: 8%;
    z-index: 2;
    padding: 2px;
}
.heading{
    width: 32%;
    margin-left: 2%;
    margin-top: 10%;
}
.image-head{
    width: 55%;
    height: 35%;
}
.movie-detail h1{
    color: blue;
    margin-top: 10px;
    margin-left: 2%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    align-items: center;
    column-gap: 15px;
}
.movie-detail p{
    margin-top: 18px;
    line-height: 30px;
    margin-left: 2%;
    width: 100%;
    display: flex;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
}
.movie-detail span{
    margin-top: 18px;
    font-size: 16px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(205, 189, 189);
    line-height: 30px;
    margin-left: 2%;
    width: 100%;
    display: flex;
    align-items: center;
}
.movie-detail .category{
    margin-top: 20px;
    margin-left: 2%;
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
    font-weight: 400;
}
.button1{
    margin-top: 20px;
    margin-left: 2%;
    padding: 15px 50px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 18px;
    border-radius: 10px;
    border-color: transparent;
    background-color: hsla(0, 0%, 70%, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
    overflow-wrap: break-word;
}
.button1:hover{
    background-color: hsla(0, 0%, 75%, 0.6);
    color: black;
    transform: scale(1.08);
}
.button2{
    margin-top: 20px;
    margin-left: 15px;
    padding: 18px;
    color: white;
    border-radius: 10px;
    border-color: transparent;
    background-color: hsla(0, 0%, 70%, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.button2:hover{
    background-color: hsla(0, 0%, 75%, 0.6);
    color: black;
    transform: scale(1.08);
}

/* middle */
.mid{
    width: 100.5%;
    height: 360vh;
    padding: 20px 0;
    background-color: rgb(21, 21, 21);
}

/* first row */
.midrap{
    width: 90%;
    margin: auto;
    margin-left: 8%;
}
.midrap h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;
    color: white;
}
.content1{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.6s;
}
.content1:hover{
    opacity: 1;
}
.content1 h1{
    font-size: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
}
.content1 .fa{
    position: relative;
    width: 50px;
    height: 40px;
    color: white;
    top: 10px;
    font-size: 50px;
    text-align: center;
    margin-left: 5%;
}
.movie1{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    grid-column-gap: 10px;
    margin-left: 8%;
}
.box1{
    border-radius: 15px;
    padding: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    position: relative;
    width: 100%;
    text-align: center;
    color: white;
}
.box1 img{
    width: 200px;
    height: 50vh;
    clip-path: inset(42px 0 42px 0);
}
.box1:hover{
    transform: scale(1.10);
}
.num1{
    position: absolute;
    top: 53%;
    right: 70%;
    font-size: 100px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.content1 a{
    text-decoration: none;
}

/* second row */
.midrap2{
    width: 90%;
    margin: auto;
    margin-left: 8%;
}
.midrap2 h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;
    color: white;
    margin-top: 1%;
}
.content2{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.65);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.6s;
}
.content2 a{
    text-decoration: none;
}
.content2:hover{
    opacity: 1;
}
.content2 h1{
    font-size: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
    text-align: center;
}
.content2 .fa{
    position: relative;
    width: 50px;
    height: 40px;
    color: white;
    top: 10px;
    font-size: 50px;
    text-align: center;
}
.comedy{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    grid-column-gap: 10px;
    margin-left: 8%;
}
.box2{
    border-radius: 15px;
    padding: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.box2 img{
    width: 200px;
    height: 50vh;
    clip-path: inset(42px 0 44px 0);
}
.box2:hover{
    transform: scale(1.10);
}

/* third row */
.midrap3{
    width: 90%;
    margin: auto;
    margin-left: 8%;
}
.midrap3 h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;
    color: white;
}
.content3{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.6s;
}
.content3:hover{
    opacity: 1;
}
.content3 h1{
    font-size: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
}
.content3 .fa{
    position: relative;
    width: 50px;
    height: 40px;
    color: white;
    top: 10px;
    font-size: 50px;
    text-align: center;
}
.content3 > *{
    transform: translateY(25px);
    transition: transform 0.6s;
}
.content3:hover > *{
    transform: translateY(0px);
}

.horror{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    grid-column-gap: 10px;
    margin-left: 8%;
}
.box3{
    border-radius: 15px;
    padding: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.box3 img{
    width: 200px;
    height: 50vh;
    clip-path: inset(42px 0 42px 0);
}
.box3:hover{
    transform: scale(1.10);
}

/* fourth row */
.midrap4{
    width: 90%;
    margin: auto;
    margin-left: 8%;
}
.midrap4 h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;
    color: white;
}
.content4{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.6s;
}
.content4:hover{
    opacity: 1;
}
.content4 h1{
    font-size: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
}
.content4 .fa{
    position: relative;
    width: 50px;
    height: 40px;
    color: white;
    top: 10px;
    font-size: 50px;
    text-align: center;
    margin-left: 5%;
}
.crime{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    grid-column-gap: 10px;
    margin-left: 8%;
}
.box4{
    border-radius: 15px;
    padding: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.box4 img{
    width: 200px;
    height: 50vh;
    clip-path: inset(42px 0 42px 0);
}
.box4:hover{
    transform: scale(1.10);
}

/* fifth row */
.midrap5{
    width: 90%;
    margin: auto;
    margin-left: 8%;
}
.midrap5 h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;
    color: white;
}
.content5{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.6s;
}
.content5:hover{
    opacity: 1;
}
.content5 h1{
    font-size: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
}
.content5 .fa{
    position: relative;
    width: 50px;
    height: 40px;
    color: white;
    top: 10px;
    font-size: 50px;
    text-align: center;
    margin-left: 5%;
}
.thriller{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    grid-column-gap: 10px;
    margin-left: 8%;
}
.box5{
    border-radius: 15px;
    padding: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.box5 img{
    width: 200px;
    height: 50vh;
    clip-path: inset(42px 0 42px 0);
}
.box5:hover{
    transform: scale(1.10);
}

/* sixth row */
.midrap6{
    width: 90%;
    margin: auto;
    margin-left: 8%;
}
.midrap6 h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;
    color: white;
}
.romance{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    grid-column-gap: 10px;
    margin-left: 8%;
}
.box6{
    border-radius: 15px;
    padding: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.box6 img{
    width: 200px;
    height: 50vh;
    clip-path: inset(42px 0 42px 0);
}
.box6:hover{
    transform: scale(1.10);
}
.content6 .fa{
    position: relative;
    margin-top: 30%;
    width: 50px;
    height: 40px;
    color: white;
    top: 10px;
    font-size: 50px;
    margin-left: 40%;
}
.content6{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.65);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}
.box6:hover .content6{
    height: 100%;
}
.content6 h1{
    color: white;
    width: 100%;
    margin-top: 10%;
    font-size: 30px;
    position: absolute;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transform: rotate(-3deg)skewX(-5deg);
}

/* footer */
.footer{
    width: 100.5%;
    height: 30vh;
    background-color: rgb(21, 21, 21);
}
/* first row */
.footrap{
    width: 90%;
    margin: auto;
    margin-left: 8%;
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-column-gap: 50px;
}
.cover h1{
    color:white;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    cursor: pointer;
}
.cover span{
    width: 100%;
    font-size: 18px;
    border-radius: 30px;
    line-height: 3ch;
    color: gray;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
}
.cover span a{
    color: gray;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
}
.cover span a:hover{
    color: white;
}
.cover2 h1{
    color: white;
    font-size: 20px;
    margin-left: 25%;
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.cover2 span{
    width: 100%;
}
.cover2 span a{
    color: white;
    margin-left: 25%;
    font-size: 25px;
    text-decoration: none;
}
.cover2 img{
    width: 40%;
    height: 7vh;
}
