.history-section {
    background: var(--blue-color);
    padding: 80px 0 100px 0;
}

.history-section h3 {
    color: var(--white-color);
    margin: 0 0 50px 0;
    padding: 0;
}

.history-section .owl-stage {
    display: flex;
}

.history-section .owl-item,
.history-section .item {
    height: 100%;
}

.history-section .projects-timeline {
    display: flex;
}

.history-section .projects-timeline .project {
    display: flex;
    flex-direction: column;
}

.history-section .projects-timeline .project .year {
    height: 38px;
    text-align: center;
    font-size: 25px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0% 100%, 5% 48%, 0% 0%);
}

.history-section .projects-timeline .project.finish .year {
    background-color: var(--white-color);
    color: var(--blue-color1);
    z-index: 2;
}

.history-section .projects-timeline .project.in-progress .year {
    background-color: var(--success);
    color: var(--white-color);
    z-index: 2;
}

.history-section .projects-timeline .project.open .year {
    background-color: #4f6881;
    color: var(--white-color);
    height: 36px;
    z-index: 1;
}

.history-section .projects-timeline .project .project-head {
    height: 100%;
    min-height: 92px;
    display: flex;
}

.history-section .projects-timeline .project .project-body {
    margin-top: auto;
}

.history-section .projects-timeline .project .heading-box {
    border-left: 2px solid var(--success);
    margin-left: 40px;
    margin-bottom: 10px;
    padding-left: 5px;
}

.history-section .projects-timeline .project .heading-box p {
    font-size: 18px;
    color: var(--success);
    margin: 0;
    padding: 0 0 8px 0;
}

.history-section .projects-timeline .project .subheading-box {
    font-size: 18px;
    color: var(--white-color);
    line-height: 1.2;
    text-align: center;
    margin: 0;
    padding: 0;
}

@media(max-width: 767px) {
    .history-section .projects-timeline .project .heading-box p {
        font-size: 16px;
    }

    .history-section .projects-timeline .project .heading-box {
        margin-left: 20px;
    }
}