/* .historySlider{
    background-color: #0068B5;
    background-image: linear-gradient(180deg, #003070 0%, #0068B5 100%);
    padding-inline: 15px;
} */
.historySlider .swiper-button-next, .historySlider .swiper-button-prev{
    --swiper-navigation-color: #fff;
    top: 115px;
}
.historySlider .swiper-button-prev{
    left: -2px;
}
.historySlider .swiper-button-next{
    right: -2px;
}
.historySlider .swiper-wrapper{
    max-width: 95%;
}

.historySlider .slider__item::before{
    content: '';
    position: absolute;
    top: 115px;
    left: 0;
    width: 115%;
    height: 1px;
    background-color: #fff;
}

.slider__content{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-block: 20px;
    position: relative;
}

.slider__year{
    width: 300px;
}

.history-content{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 20px 10px;
    gap: 25px;
    width: 410px;
    min-height: 400px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.swiper-slide-active .history-content{
    /* display: flex; */
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease-in-out 0.3s;
}
.date-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.date-block__year{
    font-size: 38px;
    font-weight: 800;
    font-style: italic;
    font-family: 'Lato', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    order: 3;
}
.swiper-slide-active .date-block__year{
    color: rgba(255, 255, 255, 1);
}
.date-block__bullet{
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background-color: #0068B5;
    border: 2px solid #fff;
    margin-top: 10px;
    transform: scale(1);
    transform-origin: center;
    transition: all 0.3s ease-in-out;
    order: 2;
    cursor: pointer;
}

.swiper-slide-active .date-block__bullet{
    background-color: #E73742;
    transform: scale(1.5);

}

.date-block__empty{
    width: 20px;
    height: 57px;
    order: 1;
}

.historySlider .swiper-wrapper .slider__item:nth-child(2n) .date-block__year{
    order: 1;
}
.historySlider .swiper-wrapper .slider__item:nth-child(2n) .date-block__empty{
    order: 3;
}

.historySlider .history-content__img{
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    height: 228px;
    object-fit: cover;
    filter: grayscale(70%);
}
.swiper-slide-active .history-content__img{
    filter: grayscale(0%);
    transition: filter 0.3s ease-out 0.7s;
}

.history-content__text > *{
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    line-height: 140%;
    color: #fff;
}