.film_wrapper {
    padding: 0 140px;
}

.none {
    display: none !important;
}

.slider {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    overflow: hidden;
}

.slider,
.slide {
    width: calc(100vw - 140px * 2);
    height: 600px;
    max-width: 100%;
    /* height: fit-content; */
}

.slide {
    display: flex;
    flex-direction: row;
    column-gap: 8px;
    /* background: red; */
    position: relative;
}

.slide i {
    width: 20px;
}

.image {
    align-self: flex-start;
    width: 100%;
}

.prev_container {
    height: 500px;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image img {
    width: 100%;
    height: 500px;
    object-fit: cover !important;
}

.image_overlay {
    width: 30%;
    height: 100%;
    /* margin-left: 5px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.overlay_img {
    position: relative;
    height: 500px;
}

.overlay_img .img {
    width: 100%;
    height: 100%;
    opacity: 0.5;
    object-fit: cover;
}

.image_overlay .next {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-70%);
    font-weight: bold;
}

.image_overlay a {
    width: fit-content;
}

.slide-detail {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide a {
    color: #616060;
    text-decoration: none;
    transition: 0.5s;
    position: relative;
    z-index: 3;
    font-size: 14px;
}

.slide h4,
.all_film {
    margin-top: 24px;
}

.slide h4 {
    font-weight: 600;
    font-size: 14px;
    cursor: auto;
    text-align: left;
    color: #616060;
}

.slide p {
    margin-top: 8px;
    cursor: auto;
    font-size: 14px;
    font-weight: normal !important;
    text-align: left;
    color: #616060;
}

.next,
.prev {
    font-size: 24px;
    cursor: pointer;
    color: #c4c4c4;
    font-weight: bold;
    /* transform: translateY(-20px); */
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 100%;
    height: 100vh;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hidden {
    display: none !important;
}

.close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    font-size: 34px;
}

#iframe_wrapper {
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
}

iframe {
    width: 100%;
    height: 550px;
    margin: 0 auto;
}

@media screen and (max-width: 900px) {
    #iframe_wrapper {
        width: 75%;
    }

    iframe {
        height: 400px;
    }
}

@media screen and (max-width: 550px) {
    .film_wrapper {
        padding-top: 120px;
    }

    #iframe_wrapper {
        width: 75%;
    }

    .slider,
    .slide {
        width: 300px;
        height: 300px;
    }

    iframe {
        height: 350px;
    }
}
