.post-carousel-5 {
    position: relative;
    overflow: hidden;
}

.post-carousel-5 .swiper-slide {
    transition: ease .3s;
}

.post-carousel-5 .large-slider .swiper-slide:not(.swiper-slide-active) {
    opacity: 0;
    pointer-events: none;
}

.post-carousel-5 .large-slider .swiper-slide.swiper-slide-active {
    opacity: 1;
    pointer-events: all;
}

.post-carousel-5 .carousel-item {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 600px;
    padding: 3rem 2rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.post-carousel-5 .carousel-item:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    width: 100%;
    height: 200px;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 1) 90%);
}

.post-carousel-5 .carousel-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 5;
    width: 100%;
    height: 250px;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 1) 90%);
}

.post-carousel-5 .carousel-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.post-carousel-5 .carousel-content .item-title {
    font-size: 30px;
    font-weight: 600;
    color: #000;
}

.post-carousel-5 .carousel-content .subtitle {
    font-size: 25px;
    font-weight: 300;
    margin-top: 7px;
    color: #000;
}

.post-carousel-5 .carousel-content .metas {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.post-carousel-5 .carousel-content .metas span {
    margin-left: 5px;
}

.post-carousel-5 .carousel-content .movie-rate {
    display: inline-block;
    background-color: #4FAB5B45;
    color: #4FAB5B;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 14px;
}

.post-carousel-5 .carousel-content .movie-rate i {
    margin-left: 5px;
}

.post-carousel-5 .carousel-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-carousel-5 .carousel-buttons .post-comments {
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-carousel-5 .carousel-content.content-style1-wrapper {
    display: flex;
    justify-content: end;
}

.post-carousel-5 .carousel-content-style1 {
    backdrop-filter: blur(50px);
    border-radius: 30px;
    padding: 20px 40px;
    width: 550px;
    position: absolute;
    top: -100px;
}

.post-carousel-5 .carousel-buttons a {
    gap: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    background-color: #FF2942;
    border-radius: 8px;
    color: #fff;
    font-size: 21px;
    transition: ease .15s;
}

.post-carousel-5 .carousel-buttons a svg {
    width: 17px;
    fill: #fff;
}

.post-carousel-5 .carousel-thumbs {
    position: absolute;
    bottom: 50px;
    width: 300px;
}

.post-carousel-5 .carousel-thumbs img {
    border-radius: 10px;
    height: 100px;
    width: 100px;
    border: 1px solid #fff;
    object-fit: cover;
}

.post-carousel-5 .thumbs-slider .swiper-slide:not(.swiper-slide-thumb-active) {
    transform: scale(.8);
}

.post-carousel-5 .thumbs-slider .swiper-slide.swiper-slide-thumb-active img {
    border-color: transparent;
}

.post-carousel-5 .post-carousel5-arrow {
    position: absolute;
    top: 50%;
    z-index: 9;
    transform: translateY(-50%);
}

.post-carousel-5 .post-carousel5-arrow i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    cursor: pointer;
}

.post-carousel-5 .post-carousel5-arrow i::before {
    font-size: 10px
}

.post-carousel-5 .post-carousel5-button-prev {
    left: 0;
}

.post-carousel-5 .post-carousel5-button-next {
    right: 0;
}

@media screen and (max-width: 1024px) {
    .post-carousel-5 .carousel-thumbs {
        opacity: 0;
        pointer-events: none;
    }
}

@media screen and (max-width: 767px) {
    .post-carousel-5 .carousel-item {
        padding: 1rem;
        text-align: center;
    }

    .post-carousel-5 .carousel-content .metas .meta {
        display: none;
    }
}