.latest_content{
    h4{
        font-size: 22px;
        font-weight: 500;
        color: $white;
        line-height: 30px;
    }
    .content_wrapper{
        padding-top: 12px;
    }
}

.popular_content{
    h4{
        font-size: 22px;
        font-weight: 500;
        color: $white;
        line-height: 30px;
    }
    .content_wrapper{
        padding-top: 12px;
    }

    .swiper-button-prev{
        height: 40px;
        width: 40px;
        background-color: rgba(0,0,0,0.5);
        border-radius: 50%;
        &::after{
            font-size: 22px;
            color: $white;
        }
    }
    .swiper-button-next{
        height: 40px;
        width: 40px;
        background-color: rgba(0,0,0,0.5);
        border-radius: 50%;
        &::after{
            font-size: 22px;
            color: $white;
        }
    }
}

.films_content{
    h4{
        font-size: 22px;
        font-weight: 500;
        color: $white;
        line-height: 30px;
    }
    .content_wrapper{
        padding-top: 12px;
    }
}

.films_content_wrapper{
    padding-top: 12px;
}
.film_main{
    cursor: pointer;
    .image{
        height: 380px;
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        border: 1px solid #c3c3c33c;
        img{
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
        .content_overly{
            position: absolute;
            bottom: 0;
            left: 0;
            height: 100%;
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            padding: 10px 10px;
            background-image: linear-gradient(0deg, #000000bf 1%, transparent 35%),linear-gradient(0deg, #18181863 25%, transparent 50%);
            .overly_name{
                font-size: 16px;
                font-weight: 400;
                color: #f8f8f8;
                @include text-ellips;
            }
            .overly_btn{
                i{
                    height: 35px;
                    width: 35px;
                    background-color: $primaryColor;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color: $white;
                    font-size: 18px;
                    border-radius: 50%;
                    &:hover{
                        background-color: $white;
                        color: $primaryColor;
                    }
                }
            }
        }
    }
    .content_title{
        font-size: 18px;
        font-weight: 400; 
        color: $white;
        @include text-ellips;
        padding-top: 6px;
    }
}
.content_one{
    &:hover .content_img{
     transform: scale(1.15);
     transition: all linear .3s;
     z-index: 4;
     border: 1px solid #e7e7e7a8;
    }
    .content_img{
        height: 300px;
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        border: 1px solid #c3c3c34e;
        cursor: pointer;
        img{
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
        .content_overly{
            position: absolute;
            bottom: 0;
            left: 0;
            height: 100%;
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            padding: 10px 10px;
            background-image: linear-gradient(0deg, #000000bf 1%, transparent 35%),linear-gradient(0deg, #18181863 25%, transparent 50%);
            .overly_name{
                font-size: 12px;
                font-weight: 400;
                color: #f8f8f8;
                @include text-ellips;
            }
            .overly_btn{
                i{
                    height: 35px;
                    width: 35px;
                    background-color: $primaryColor;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color: $white;
                    font-size: 18px;
                    border-radius: 50%;
                    &:hover{
                        background-color: $white;
                        color: $primaryColor;
                    }
                }
            }
        }
    }
}

.content_two{
    .content_img{
        height: 180px;
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        border: 1px solid #c3c3c34e;
        cursor: pointer;
        img{
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
        .content_overly{
            position: absolute;
            bottom: 0;
            left: 0;
            height: 100%;
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            padding: 10px 10px;
            background-image: linear-gradient(0deg, #000000bf 1%, transparent 35%),linear-gradient(0deg, #18181863 25%, transparent 50%);
            .overly_name{
                font-size: 14px;
                font-weight: 400;
                color: #f8f8f8;
                @include text-ellips;
            }
            .overly_btn{
                i{
                    height: 35px;
                    width: 35px;
                    background-color: $primaryColor;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color: $white;
                    font-size: 18px;
                    border-radius: 50%;
                    &:hover{
                        background-color: $white;
                        color: $primaryColor;
                    }
                }
            }
        }
    }
}