.mod-14-history {
    padding: 0 0 100px 0;
}

.mod-14-history:not(.hero-spacing-ready){
    padding: 100px 0;
}

.mod-14-history .history-container {
    margin: 0 auto;
    padding: 0 172px;
}

.mod-14-history .history-container .history-timeline-wrapper {
    position: relative;
    margin: 0 auto 87px;
    max-width: 668px;
    min-height: 113px;
}

.mod-14-history .history-container .history-timeline-wrapper .container-timeline{
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

.mod-14-history .history-container .history-timeline-wrapper .container-timeline::before {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 56px;
    background: linear-gradient(90deg, var(--color-neutral-beige-light) 20%, rgba(246, 241, 237, 0) 100%);
    z-index: 10;
    pointer-events: none;
    height: 80px;
}

.mod-14-history .history-container .history-timeline-wrapper .container-timeline::after {
    content: "";
    position: absolute;
    bottom: 4px;
    right: 0;
    width: 56px;
    background: linear-gradient(90deg, rgba(246, 241, 237, 0) 0%, var(--color-neutral-beige-light) 80%);
    z-index: 10;
    pointer-events: none;
    height: 80px;
}

.mod-14-history .history-container .history-timeline-wrapper .timeline-line {
    position: absolute;
    bottom: 13px;
    left: 0;
    width: 100%;
    z-index: 1;
    border: 1px solid var(--color-neutral-beige-dark);
}

.mod-14-history .history-container .history-timeline-wrapper .nav-slide {
    text-align: center;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: auto;
}

.mod-14-history .history-container .history-timeline-wrapper .nav-slide.swiper-slide-thumb-active {
    opacity: 1;
}

.mod-14-history .history-container .history-timeline-wrapper .nav-year {
    margin-bottom: 10px;
    display: block;
}

.mod-14-history .history-container .history-timeline-wrapper .nav-slide.swiper-slide-thumb-active .nav-year {
    color: var(--color-primary);
    font-family: var(--typo-display-1-font);
    font-size: var(--typo-display-1-size);
    font-weight: var(--typo-display-1-fw);
    line-height: var(--typo-display-1-lh);
    letter-spacing: var(--typo-display-1-ls);
}

.mod-14-history .history-container .history-timeline-wrapper .nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-neutral-beige-dark);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    margin-bottom: 6px;
    box-sizing: content-box;
}

.mod-14-history .history-container .history-timeline-wrapper .nav-slide.swiper-slide-thumb-active .nav-dot {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.3);
}

.mod-14-history .history-container .history-main .history-content-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mod-14-history .history-container .history-main .history-text-col {
    flex: 1;
    max-width: 50%;
}

.mod-14-history .history-container .history-main .big-year,.mod-14-history .history-container .history-main .history-title {
    margin-bottom: 16px;
    margin-top: 0;
}

.mod-14-history .history-container .history-main .history-image-col {
    flex: 1;
    max-width: 50%;
}

.mod-14-history .history-container .history-main .history-image-col img {
    width: 100%;
    height: auto;
    display: block;
}

.mod-14-history .history-container .history-nav-arrows{
    position: relative;
}

.mod-14-history .history-container .history-nav-arrows svg {
    fill: none;
    height: 12px;
}

.mod-14-history .history-container .swiper-button-prev {
    left: -35px;
    transform: rotate(180deg);
    top: -12px;
}

.mod-14-history .history-container .swiper-button-next {
    right: -35px;
    top: -12px;
}

@media (max-width: 992px) {
    .mod-14-history:not(.hero-spacing-ready) {
        padding: 40px 0;
    }

    .mod-14-history .history-container{
        padding: 0 20px;
    }

    .mod-14-history .history-container .history-timeline-wrapper{
        margin: 0;
    }

    .mod-14-history .history-container .history-timeline-wrapper .container-timeline{
        max-width: 300px;
    }

    .mod-14-history .history-container .swiper-button-prev{
        left: 12px;
    }
    
    .mod-14-history .history-container .swiper-button-next{
        right: 12px;
    }

    .mod-14-history .history-content-layout {
        flex-direction: column;
        text-align: left;
        gap: 0px;
    }
    .mod-14-history .history-container .history-main .history-text-col, .mod-14-history .history-container .history-main .history-image-col {
        max-width: 100%;
    }
    .mod-14-history .history-container .history-main .history-image-col {
        margin-top: 20px;
    }
}