/* .movie {
    padding: 50px 0;
    background: #e0e0e0;
}
.movie .item {
    display: flex;
    border-radius: 15px;
    transition: all 0.4s;
    box-shadow: 0px 20px 20px -25px rgb(0 0 0 / 50%);
    background: #E5E6E6;
    margin-top: 10px;
    position: relative;
}
.movie .item .content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px 150px 20px 20px;
}

.movie .item .content p{
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: justify;
}
.movie .item figure{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;

}
.movie .item img{
    height: 284px!important;
    width: auto!important;
}
.movie .item .hr:before {
    content: "";
    display: block;
    width: 100%;
    border: 1px solid;
    border-image: linear-gradient(90deg, rgb(76 76 76) 0, rgba(8,108,145,0) 60%) 1;
}
.movie .owl-carousel .owl-stage {
    padding: 15px 0;
}
.movie .owl-theme .owl-dots .owl-dot span {

    border: 1px solid #786464;
}
.movie  .owl-theme .owl-dots .owl-dot.active span {
    background-color: #cb147c;
}
.movie .owl-theme .owl-dots {
    padding-left: 25px;
}
.movie .item a.btn{
    margin-top: 7px;
}
.movie .item:before {
    content: "";
    display: block;
    position: absolute;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, #e5e6e6 30%, transparent 100%);
    left: 55%;
    z-index: 100;
}
.movie .owl-carousel .owl-item {
    padding: 0;

}
@media (max-width: 992px){
    .movie .item:before {

        left: 30%;
    }
    .movie .item .content {
        padding: 20px 50px 20px 20px;
    }
}
@media (max-width: 768px){
    .movie .item .content {

        position: absolute;
        width: 70%;
        height: 100%;
        left: 0;
        z-index: 100;
    }
    .movie .item:before {
        left: 0%;
    }
    .movie .item img {
        height: auto!important;
        width: 100%!important;
    }
    .movie .item:before {
        border-radius: 15px;
    }
    .movie .item figure {
        border-radius: 15px;
    }
} */