.history-container{
    --background: #F5F9F8;
    background: var(--background);
}
.history-download{
    margin-top: 32px;
}

@media(min-width: 768px){
    .history-download{
        padding: 18px 0;
        margin-top: 0;
        margin-bottom: 60px;
    }
}

.history-download a{
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--text-color);
    text-decoration: none;
    
}

@media(min-width: 768px){
    .history-download a{
        text-align: right;
    }
}

.history-download svg{
    stroke: transparent;
}

.history-list-start{
    height: 17px;
    border-left: 2px solid var(--primary-color);
    margin-bottom: 10px;
}

.history-item{
    border-left: 2px solid var(--text-color);
    padding: 0 40px 32px;
}

@media(min-width: 1200px){
    .history-item{
        padding: 0 40px 40px;
    }
}

.history-item:last-child{
    padding-bottom: 0;
}

.history-item-year{
    position: relative;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    color: var(--heading-color);
    margin-bottom: 12px;
}

@media(min-width: 1200px){
    .history-item-year{
        font-size: 26px;
        line-height: 33.8px;
        margin-bottom: 20px;
    }
}

.history-item-year:before{
    content: "";
    position: absolute;
    top: -4px;
    left: -50px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--text-color);
    border-top: 9px solid var(--background);
    border-bottom: 9px solid var(--background);
}

.history-item.is-active {
    border-color: var(--primary-color);
}

.history-item.is-active .history-item-year{
    color: var(--primary-color);
}

.history-item.is-active .history-item-year:before{
    background: var(--primary-color);
}

.history-item-desc{
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-color);
}

@media(min-width: 768px){
    .history-item-desc{
        font-size: 18px;
        line-height: 28px;
    }
}

.history-container img{
    border-radius: var(--border-radius);
    margin-top: 32px;
}

@media(min-width: 768px){
    .history-container img{
        height: calc(100% - 120px);
        width: 100%;
        object-fit: cover;
        object-position: right center;
        margin-top: 0;
    }
}