/*==================================================
TIMELINE
==================================================*/

.timeline{

    display:grid;

    gap:32px;

}

.timeline-item{

    display:flex;

    gap:24px;

    align-items:flex-start;

}

.timeline-number{

    width:56px;

    height:56px;

    border-radius:var(--radius-round);

    background:var(--primary);

    color:var(--white);

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:bold;

    flex-shrink:0;

}

.timeline-content h3{

    margin-bottom:10px;

}
