.slider {
    height: 680px;
    position: relative;
    max-width: 1536px;
    margin: 0 auto;
    overflow: hidden;
}
.slider_filme-page {
    height: 693px;
}
.slider__inner {
    height: 100%;
    position: absolute;
    display: flex;
    transition: .6s;
}

.slider__bullets-container {
    position: absolute;
    display: flex;
    z-index: 22;
    left: calc(50% - 60px);
    top: 90%;
    gap: 13px;
}
.slider__bullet {
    position: relative;
    border: none;
    background: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    transition: .3s;
}
.slider__bullet:hover {
    background: var(--light-blue);
}
.slider__bullet-active {
    background: var(--light-blue);
}
@media screen and (max-width: 1279px) {
    .slider {
        height: 500px;
    }
    .slider__bullet {
        width: 15px;
        height: 15px;
    }
}