.flex-content.timeline {
    position: relative;
    padding: 6rem 0;
    background-color: #f3f5f7;
}

.timeline-rows {
    position: relative;
    /* padding: 2rem 0 0; */
}
.timeline-rows .row + .row {
    margin-top: 3rem;
}

.timeline-rows .row .col-lg-6 {
    position: relative;
}

@media (min-width: 992px) {
    .timeline-rows::before {
        content: "";
        display: block;
        pointer-events: none;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: .125rem;
        transform: translateX(-.25rem);
        background-color: rgba(var(--bs-primary-rgb),.1);
    }
    .timeline-rows .row:not(.justify-content-end) {
        text-align: right;
    }

    .timeline-rows .row:not(.justify-content-end) .col-lg-6 {
        padding-right: 7%;
    }
    .timeline-rows .row.justify-content-end .col-lg-6 {
        padding-left: 7%;
    }
}

.timeline-rows .card {
    --bs-card-spacer-y: 1.5rem;
    --bs-card-spacer-x: 1.5rem;
}
.timeline-rows .acquisition .card {
    --bs-card-border-color: #d9e6bb;
}

.timeline-rows .year-wrap,
.timeline-rows .year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);

    position: absolute;
    top: 50%;
}
.timeline-rows .year-wrap {
    width: 1.25rem;
    height: 1.25rem;
    box-shadow: none;
    border: solid .25rem #f3f5f7;
}
.timeline-rows .acquisition .year-wrap,
.timeline-rows .acquisition .year {
    background-color: var(--accent-green);
}

@media (min-width: 992px) {
    .timeline-rows .row:not(.justify-content-end) .year-wrap,
    .timeline-rows .row:not(.justify-content-end) .year {
        left: calc(100% - .375rem);
        transform: translate(-50%, -50%);
    }
    .timeline-rows .row:not(.justify-content-end) .year-wrap {
        left: calc(100% - .175rem);
    }
    .timeline-rows .row.justify-content-end .year-wrap,
    .timeline-rows .row.justify-content-end .year {
        right: calc(100% - .375rem);
        transform: translate(50%, -50%);
    }
    .timeline-rows .row.justify-content-end .year-wrap {
        right: calc(100% + .175rem);
    }
}
@media (max-width: 991px) {
    .timeline-rows .year-wrap, .timeline-rows .year {
        transform: translateY(-50%);
        z-index: 2;
    }
    .timeline-rows .card-body {
        padding-left: 4.5rem;
    }
}

.timeline-rows h3 {
    display: flex;
    flex-direction: column;
}
.timeline-rows h3 > span {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: .5rem;
}
.timeline-rows .acquisition h3 > span::after {
    content: "Acquisition";
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .75rem;
    line-height: 1rem;
    padding: .125rem .5rem;
    border-radius: 9999px;
    color: var(--accent-green);
    background-color: #f2f7e8;
}
@media (min-width: 992px) {
    .timeline-rows .row:not(.justify-content-end) h3 {
        align-items: flex-end;
    }
}
.timeline-rows .text p:last-child {
    margin-bottom: 0;
}



/*
.timeline-rows .row .col-lg-6::before {
    content: "";
    display: block;
    pointer-events: none;
    position: absolute;
    top: 40px;
    left: 97%;
    height: .125rem;
    width: 23%;
    background-color: rgba(var(--bs-primary-rgb),.1);
    z-index: -1;
}
@media (min-width: 992px) {
    .timeline-rows .row.justify-content-end .col-lg-6::before {
        left: auto;
        right: 97%;
    }
}
@media (max-width: 991px) {
    .timeline-rows .row .col-lg-6::before {
        left: auto;
        right: 97%;
    }
}
*/