/* .timeline_section {
    background-color: white;
    max-width: 1700px;
    margin: auto;
    margin-inline: 50px;
}

.timeline_section > h1{
    color: rgb(68, 68, 68);
    font-size: 2.5rem;
    margin-bottom: 12px;
} */

/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    font-family: Helvetica, sans-serif;
    max-width: 1400px;
    margin-inline: auto;
    margin-top: 30px;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

/* Container around content */
.timeline_container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    /* border: 2px solid black; */
}


/* The circles on the timeline */
.timeline_container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid rgb(109, 88, 88);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

/* Place the container to the left */
.left {
    left: 0;
}

/* Place the container to the right */
.right {
    left: 50%;
}

/* Add arrows to the left container (pointing right) */

.left::before {
    content: "";
    width: 35px;
    position: absolute;
    top: 29px;
    right: 2px;
    z-index: 1;
    border: 2px solid rgba(0, 0, 0, 0.7);
}



/* Add arrows to the right container (pointing left) */
.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 28px;
    width: 24px;
    z-index: 1;
    left: 14px;
    border: 2px solid rgba(0, 0, 0, 0.7);
}

/* Fix the circle for containers on the right side */
.right::after {
    left: -16px;
}

/* The actual content */
.timeline_content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border: 2px solid black;
    border-radius: 6px;
    text-align: justify;
}


.timeline_logo{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.timeline_logo > img{
    width: 70px;
    margin-right: 20px;
}

.loc_info .location{
    font-size: 1.5rem;
}

.loc_info .time{
    font-size: 1.3rem;
    color: rgb(125, 125, 125);
}