

.movie-title {
    padding-left: 50px;
    text-transform: capitalize;
    margin-top: 80px;
}

.movie-des {
    width: 80%;
    line-height: 30px;
    padding-left: 50px;
    margin-top: 30px;
    opacity: 0.8;
}

.title {
    color: #fff;
    opacity: 0.9;
    padding-left: 4%;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 500;
}

.movies-list {
    width: 100%;
    height: 220px;
    position: relative;
    margin: 10px 0 20px;
}

.card-container {
    position: relative;
    width: 92%;
    padding-left: 10px;
    height: 220px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
}

.card-container::-webkit-scrollbar {
    display: none;
}

.card {
    position: relative;
    min-width: 90px;
    width: 90px;
    /* height: 200px; */
    /* border-radius: 5px; */
    overflow: hidden;
    margin-right: 10px;
    transition: 0.5s;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card:hover {
    transform: scale(1.1);
}

.card:hover .card-body {
    opacity: 1;
}

.card-body {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /* background: linear-gradient(to bottom, rgba(4, 8, 15, 0), #192135 90%); */
    padding: 10px;
    transition: 0.5s;
}

.name {
    color: black;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 100%;
}





.pre-btn,
.nxt-btn {
    position: absolute;
    top: 0;
    width: 5%;
    height: 100%;
    z-index: 2;
    border: none;
    cursor: pointer;
    outline: none;
}

.pre-btn {
    left: 0;
    /* background: linear-gradient(to right, #0c111b 0%, #0c111b00); */
    background-color: rgba(177, 177, 178);
    border: 1px solid gray;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    margin-top: 100px;
}

.pre-btn:hover {
    background-color: aquamarine;
}

.nxt-btn {
    right: 0;
    /* background: linear-gradient(to left, #0c111b 0%, #0c111b00); */
    border: 1px solid gray;
    background-color: rgba(177, 177, 178);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    margin-top: 100px;
}

.nxt-btn:hover {
    background-color: aquamarine;
}

.pre-btn img,
.nxt-btn img {
    width: 15px;
    height: 20px;
    opacity: 0;
}

.pre-btn:hover img,
.nxt-btn:hover img {
    opacity: 1;
}