.timeline-section {
    background-color: #fff;
    overflow: hidden;
}

.timeline-section-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 6.94% 11.11%;
}

.timeline-section-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.timeline-section-title {
    margin: 0;
    width: 100%;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 50px;
    text-transform: capitalize;
}

.timeline-section-intro,
.timeline-section-intro p {
    margin: 0;
    width: 100%;
    max-width: 86.7%;
    color: #404040;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.timeline-section-track {
    --timeline-icon-size: 140px;
    --timeline-icon-col-width: 140px;
    --timeline-item-gap: 60px;
    position: relative;
    width: 100%;
    max-width: 77.78%;
}

.timeline-section-line {
    display: none;
}

.timeline-section-items {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--timeline-item-gap);
}

.timeline-item {
    position: relative;
    width: 100%;
    display: grid;
    align-items: start;
    grid-template-columns: 1fr var(--timeline-icon-col-width) 1fr;
}

.timeline-item--content-right .timeline-item-icon-col {
    grid-column: 2;
    grid-row: 1;
}

.timeline-item--content-right .timeline-item-content-col {
    grid-column: 3;
    grid-row: 1;
}

.timeline-item--content-left .timeline-item-icon-col {
    grid-column: 2;
    grid-row: 1;
}

.timeline-item--content-left .timeline-item-content-col {
    grid-column: 1;
    grid-row: 1;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(var(--timeline-icon-size) / 2);
    width: 3px;
    height: calc(100% + var(--timeline-item-gap));
    transform: translateX(-50%);
    background-color: #b9d4f2;
    pointer-events: none;
    z-index: 0;
}

.timeline-item-icon-col {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: var(--timeline-icon-col-width);
}

.timeline-item-icon {
    position: relative;
    z-index: 1;
    width: var(--timeline-icon-size);
    height: var(--timeline-icon-size);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #e7f2ff;
    overflow: hidden;
}

.timeline-item-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.timeline-item-content-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 6px;
}

.timeline-item--content-right .timeline-item-content-col {
    padding-left: 40px;
    text-align: left;
}

.timeline-item--content-left .timeline-item-content-col {
    padding-right: 40px;
    text-align: right;
}

.timeline-item-heading {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.timeline-item-sub-title {
    margin: 0;
    color: #1a5699;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
}

.timeline-item-title {
    margin: 0;
    color: #1a5699;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
}

.timeline-item-body,
.timeline-item-body p {
    margin: 0;
    color: #404040;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    opacity: 0.75;
}

.timeline-item--content-left .timeline-item-heading,
.timeline-item--content-left .timeline-item-body {
    align-items: flex-end;
}

.timeline-section-cta {
    width: 100%;
    display: flex;
    justify-content: center;
}

.timeline-section-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px 40px;
    border: 1px solid #1a5699;
    border-radius: 200px;
    background: #1a5699;
    color: #fff !important;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
}

.timeline-section-btn:hover {
    background: #1a6a7b;
    border-color: #1a6a7b;
    color: #fff !important;
}

@media only screen and (max-width: 1024px) {
    .timeline-section-inner {
        gap: 40px;
        padding: 10.67% 5.33%;
    }

    .timeline-section-track {
        --timeline-icon-size: 80px;
        --timeline-icon-col-width: 80px;
        --timeline-item-gap: 40px;
        max-width: 100%;
    }

    .timeline-item:not(:last-child)::before {
        left: calc(var(--timeline-icon-col-width) / 2);
    }

    .timeline-item,
    .timeline-item--content-right,
    .timeline-item--content-left {
        display: flex;
        gap: 0;
        align-items: flex-start;
    }

    .timeline-item--content-left .timeline-item-icon-col,
    .timeline-item--content-left .timeline-item-content-col {
        grid-column: auto;
        grid-row: auto;
    }

    .timeline-item-icon-col {
        flex-shrink: 0;
    }

    .timeline-item-icon {
        width: var(--timeline-icon-size);
        height: var(--timeline-icon-size);
    }

    .timeline-item-content-col,
    .timeline-item--content-right .timeline-item-content-col,
    .timeline-item--content-left .timeline-item-content-col {
        flex: 1;
        width: auto;
        padding-top: 6px;
        padding-left: 20px;
        padding-right: 0;
        gap: 8px;
        text-align: left;
        align-items: flex-start;
    }

    .timeline-item--content-left .timeline-item-heading,
    .timeline-item--content-left .timeline-item-body {
        align-items: flex-start;
        text-align: left;
    }

    .timeline-section-cta {
        width: 100%;
    }

    .timeline-section-btn {
        width: 100%;
        padding: 24px 40px;
        white-space: normal;
    }
}

@media only screen and (max-width: 767px) {
    .timeline-section-title {
        font-size: 30px;
        line-height: 38px;
    }

    .timeline-section-intro,
    .timeline-section-intro p {
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
    }

    .timeline-item-sub-title {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 1.68px;
    }

    .timeline-item-title {
        font-size: 22px;
        font-weight: 700;
        line-height: 30px;
    }

    .timeline-item-body,
    .timeline-item-body p {
        font-size: 16px;
        line-height: 24px;
    }

    .timeline-section-btn {
        font-size: 18px;
        font-weight: 800;
        line-height: 26px;
        letter-spacing: 0.72px;
    }
}

@media (max-width: 767px) {
    .timeline-item:not(:last-child)::before {
        background: #256EC0;
    }
}