section.time_line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Stack items vertically */
}
.time_line_wrapper {
    position: relative;
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
}
.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #D9D9D9;
    z-index: 1;
}
.time_line_wrapper .time_wrap {
    width: 50%; /* Less than 50% to provide space around the line */
    padding: 10px;
    box-sizing: border-box;
    z-index: 2; /* To ensure it stays above the line */
    position: relative;
}
.time_line_wrapper .time_wrap.odd {
    align-self: flex-start; /* Align odd items to the left */
    text-align: right; /* Align text to the right for odd items */
    margin-right: auto; /* Push odd items to the left */
}
.time_line_wrapper .time_wrap.even {
    align-self: flex-end; /* Align even items to the right */
    text-align: left; /* Align text to the left for even items */
    margin-left: auto; /* Push even items to the right */
    margin-top: 80px; /* Add margin to push even items further down */
}
.time_line_wrapper .time_section {
    background: #fff;
    padding: 25px;
    position: relative;
}
.time_line_wrapper .date {
    font-weight: normal;
    margin-bottom: 20px;
    color: #E11F1C;
    font-size: 40px;
    position: relative;
}
.time_line_wrapper .date-svg {
    position: absolute;
    top: 12px; /* Adjust as needed to align with the date text */
    transform: translateX(-50%); /* Center the SVG on the line */
}
.time_line_wrapper .date-svg.odd {
    right: -43px;
}
.time_line_wrapper .date-svg.even {
    left: -41px;
    transform: translateX(50%) scaleX(-1); /* Flip and adjust the position */
}
.time_line_wrapper .process {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.timeline-line:before {
    content: "";
    background: #D9D9D9;
    width: 8px;
    height: 8px;
    position: absolute;
    top: -1px;
    border-radius: 50%;
    left: -2.8px;
}
.timeline-line:after {
    content: "";
    background: #D9D9D9;
    width: 8px;
    height: 8px;
    position: absolute;
    bottom: -1px;
    border-radius: 50%;
    left: -2.8px;
}
.time_wrap.odd .content {
    margin-right: 2rem;
}
.time_wrap.even .content {
    margin-left: 2rem;
}
.time_line_wrapper .time_wrap.odd .process {
    flex-direction: row-reverse;
}
.time_line_wrapper .time_wrap .content p {
    font-size: 15px;
    margin: 0;
}
.time_line_wrapper .month {
    font-size: 15px;
    font-weight: bold;
}
@media(max-width: 1500px) {
    .time_line_wrapper {
        width: 100%;
    }
}
@media(max-width: 991px) {
    .time_line_wrapper .time_section {
        padding: 9px;
    }
    .time_line_wrapper .date-svg.odd {
        right: -27px;
    }
    .time_line_wrapper .date-svg.even {
        left: -26px;
    }
    .time_line_wrapper .date {
        font-size: 30px;
    }
}