*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}



.main{
    height: 110vh;
    width: 100%;
    background-color: rgba(219, 202, 202, 0.938);
}
.nav{
    background-color:rgba(0, 0, 0, 0.87);
    color: beige;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 9vh;
    border-bottom: 1px solid rgba(128, 128, 128, 0.233);
}

ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

input[type="search"] {
    padding-left:5vh;
}

input{
    height: 3vh;
    border-radius: 25px;
    border: none;
}

li.options{
    padding: 0 5vh ;
    font-weight: 600;
    font-size: medium;
}

ul.side-options li{
    padding: 0 3vh;
}

li.active{
    background-color: #fff;
    color: black;
    border-radius:25px;
    height: 5vh;
    display: flex;
    align-items: center;
}

.side-options i:hover{
    background-color: #ffffff1c;
    border-radius: 50%;
}

.content{
    display: flex;
}

.content .section{
    height: 91vh;
    width:80%;
    background-color: #fff;
}

.side{
    height: 101vh;
    width: 20%;
    background-color: rgb(34, 33, 33);
    overflow: scroll;
}

::-webkit-scrollbar{
    visibility: hidden;
    display: none;
}

.cat{
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 35vh;
    margin: 6vh 5vh 7vh 5vh;
    grid-gap: 3vh;
}

.cat button{
    background-color:rgba(0, 0, 0, 0.322);
    cursor: pointer;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
}

.move{
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    height: auto;
    grid-gap: 1vh;
    margin: 3vh;
    height:45vh;
    overflow: scroll;
}

.rated h3{
    margin-left: 3vh;
    font-size:30px;
    font-weight: 900;
}

.movies{
    display: flex;
}

.pic{
    height:11vh
}

img{
    border-radius: 6px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.info{
    margin-left: 2vh;
}

.section .slider{
    height: 35vh;
    width:100%;
    background-color: grey;
}

.slide {
    padding:5vh;
}

.slider{
    border-radius: 3vh;
    height: 400px;
    width: 750px;
    overflow: hidden;
    box-shadow: 1px 1px 15px rgba(0,0,0,0.4);
}

.slider .images {
    height: 100%;
    width: 100%;
}

.images img{
    height: 100%;
    width: 100%;
}

.section .area .recommend{
    background-color: black;
    height:30vh;
    width:100%;
    overflow-x: auto;
}

.area1{
    display: inline-flex;
    padding: 1vh 2vh;
    gap: 5vh;
}

.recommend h2,
.latest h2 {
    color: #fff;
    padding-left: 3vh;
}

h4 , p , .rate{
    color:rgb(0, 0, 0);
}

p , .rate{
    font-size: small;
    font-weight: 600;
}

.cards{
    position: relative;
    height:22vh;
    width:17vh;
}

.des{
    backdrop-filter: blur(1px);
    border-radius: 13px;
    display: flex;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height:7vh;
}

.des .name{
    width:13vh;
    overflow-x: auto;
    padding-right: 19px;
    padding-left: 3px;
    border-right: 1px solid rgba(59, 58, 58, 0.438);
}

.section .area .latest{
    background-color: black;
    height:35vh;
    width:100%;
    overflow-x: auto;
}

.section .area2{
    display: inline-flex;
    padding: 1vh 2vh;
    gap: 5vh;
}