.about-history-carousel {
    display: flex;
    gap: 13px;
    width: 100%;
}

.about-history-carousel {
    display: flex;
    gap: 13px;
    min-height: 210px;
    margin: 50px 0 30px;
    width: 100%;
}

.about-history-carousel__year {
    background: #77DDBE;
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    padding: 40px 20px;
}

.history-slider {
    overflow: hidden;
}

.history-slider-thumb .swiper-slide {
    font-size: 90px;
    font-weight: 500;
    font-family: var(--font-header);
}

.about-history-carousel__slider {
    background: #E5F0F7;
    border-radius: 20px;
    padding: 40px 20px 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
}

.history-slider__pagination {
    display: flex;
    gap: 8px;
}

.about-history-carousel__slider {
    .swiper-slide {
        font-size: 18px;
        line-height: 1;
        font-weight: 500;
    }

    .swiper-button-prev,
    .swiper-button-next {
        position: relative;
        left: unset;
        top: unset;
        right: unset;
        bottom: unset;
        margin: unset;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 1px 4px rgba(0, 0, 0, .16);
        transition: background .4s;

        &:hover {
            background: #eee;
        }

        svg {
            height: 15px;
        }
    }
}

@media screen and (max-width:768px) {
    .about-history-carousel {
        flex-direction: column;
    }

    .about-history-carousel__year {
        max-width: 100%;
    }

    .about-history-carousel__slider {
        gap: 50px;
    }
}