.timeline {
    position: relative;
    margin: 0 auto;
    width: 90%;
    
}

.timeline ul li {
    margin-bottom: 5rem;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.point {
    min-width: 2rem;
    height: 2rem;
    background-color: var(--primary);
    border-radius: 100%;
    z-index: 2;
    border: .3rem var(--base-700) solid;
    position: relative;
    left: .1rem;
}

.timeline ul li .content {
    width: 50%;
    padding: 0 2rem;
}

.timeline ul li:nth-child(odd) .content {
    padding-left: 0;
}

.timeline ul li:nth-child(odd) .date {
    padding-right: 0;
}

.timeline ul li:nth-child(even) .content {
    padding-right: 0;
}

.timeline ul li:nth-child(even) .date {
    padding-left: 0;
}

.timeline ul li .date {
    width: 50%;
    padding: 0 2rem;
    font-weight: normal;
}

.timeline ul li .date h4 {
    background-color: var(--user-200);
    color: var(--base-800);
    font-weight: 600;
    text-transform: uppercase;
    width: 10rem;
    text-align: center;
    padding: .5rem 1rem;
    border-radius: 1rem;
}

.timeline ul li .content h3 {
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.timeline ul li .content p {
    padding: 1rem 2rem;
    background-color: var(--user-100);
    margin-top: 0;
    text-align: center;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.timeline ul li:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline ul li:nth-child(even) .date h4 {
    float: right
}

.timeline::before {
    content: "";
    position: absolute;
    height: 100%;
    width: .4rem;
    left: 50%;
    transform: translateX(-.1rem);
    background-color: var(--base-700);
}

@media (max-width: 80rem) {
    .point {
        min-width: 1.5rem;
        height: 1.5rem;
    }

}

@media (max-width: 65rem) {
    .point {
        min-width: 1.2rem;
        height: 1.2rem;
    }

}

@media (max-width: 45rem) {
    .timeline {
        width: 100%;
    }

    p {
        font-size: 1.2rem;
        padding: 1rem !important;
    }

    .timeline ul li .content h3 {
        font-size: 1.4rem;
        line-height: 1;
    }
}