/* TIMELINE.CSS */
.timeline{
position:relative;
padding-left:40px;
}
.timeline::before{
content:"";
position:absolute;
left:12px;
top:0;
bottom:0;
width:2px;
background:var(--gold-500);
}
.timeline-item{
position:relative;
padding-bottom:35px;
}
.timeline-item::before{
content:"";
position:absolute;
left:-35px;
top:4px;
width:18px;
height:18px;
border-radius:50%;
background:var(--gold-500);
box-shadow:0 0 0 6px rgba(212,175,55,.15);
}
.timeline-title{
font-size:22px;
margin-bottom:8px;
}
.timeline-text{
color:var(--text-light);
}
