#roadmap {
width: 100%;
text-align: center;
}
.roadmap {
margin: auto;
margin-top: 20px;
padding: 0 16px;
.informational-group {
flex-direction: column;
gap: 0;
width: 100%;
.informational {
position: relative;
padding-left: calc(16px + 8px);
&::before {
content: "";
position: absolute;
left: 0;
width: 4px;
height: 100%;
background: #ddd;
}
&:first-of-type::before {
bottom: 0;
height: 50%;
}
&:last-of-type::before {
top: 0;
height: 50%;
}
&::after {
content: "";
position: absolute;
left: calc((24px - 4px) / -2);
width: 24px;
height: 24px;
border-radius: 50%;
}
&:not(.complete, .ongoing)::after {
background: white;
border: 4px solid #ddd;
width: 16px;
height: 16px;
}
&.complete::after {
background: var(--color-seaside);
background-image: url('data:image/svg+xml,');
background-repeat: no-repeat;
background-position: center;
}
&.ongoing::after {
background: var(--color-lemon);
background-image: url('data:image/svg+xml,');
background-repeat: no-repeat;
background-position: center;
}
&.heading {
background: none;
h3 {
width: 100%;
text-align: center;
}
}
}
}
}