.block--history {
    margin-top: 80px;
    margin-bottom: 80px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
    .history--container {
        padding-top: 70px;
        padding-bottom: 60px;
    }
    .history--wrap {
        padding: 40px 164px 72px 52px;
        background: var(--Dark-Grey);
        position: relative;
    }

.history--content {
    position: relative;
}
    .block--history .history--title {
        color: var(--Soft-Grey);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 24px;
        line-height: 1em;
    }

    .history--item {
        width: 100%;
        flex-shrink: 0;
    }
        .history--year {
            color: var(--White);
            font-size: 90px;
            font-style: normal;
            font-weight: 500;
            line-height: 1em;
            margin-bottom: 40px;
        }
        .history--events p {
            color: var(--White);
            margin-bottom: 16px;
            letter-spacing: 0.08em;
            position: relative;
            padding-left: 27px;
        }
            .history--events p:last-child {
                margin-bottom: 0;
            }
            .history--events p::before {
                content: '';
                position: absolute;
                left: 0;
                top:5px;
                width: 12px;
                height: 12px;
                border-radius: 6px;
                background: var(--White);
            }

.history--control {
    position: absolute;
    width: calc(100% - 104px);
    left: 52px;
    top: 164px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
}
    .history--control_line {
        width: 50px;
        height: 1px;
        background: var(--White);
        opacity: 0.2;
        flex-grow: 1;
    }
    .history--button {
        flex-grow: 0;
    }
    .history--button.swiper-button-disabled {
        opacity: 0.3;
        cursor: default;
    }
    .history--button .svg_line {
        stroke:var(--White);
    }
    .history--button_left svg {
        transform: rotate(180deg);
    }

@media (max-width: 650px) {
    .history--container {
        padding-top: 46px;
        padding-bottom: 46px;
    }
    .history--wrap {
        padding: 80px 32px 62px 32px;
    }
    .history--scroll {
        width: 100%;
    }
    .history--year {
        margin-bottom: 150px;
    }
    .history--control {
        width: calc(100% - 64px);
        top: 242px;
        left: 32px;
        justify-content: flex-end;
        flex-wrap: wrap;
    }
    .history--control_line {
        width: 100%;
    }
}