.line {
    position: absolute;
    border-left: 0.3em solid white;
    left: 50%;
    transform:translateX(-50%);
    height: 100%;
}

.entries {
    width: calc(100% - 80px);
    max-width: 800px;
    margin: auto;
    position: relative;
    left: -5px;
    display: flex;
    flex-direction: column;
}
.entries .entry {
    width: calc(50% - 80px);
    float: left;
    padding: 20px;
    clear: both;
    text-align: right;
}
.entries .entry:not(:first-child) {
    margin-top: -60px;
}
.entries .entry .title {
    font-size: 32px;
    margin-bottom: 18px;
    position: relative;
    color: #fff;
}
.entries .entry .title:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 4px solid #fff;
    background-color: #1d1d1d;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: -73px;
    z-index: 1000;
}
.entries .entry .title.big:before {
    width: 24px;
    height: 24px;
    transform: translate(8px, -50%);
}
.entries .entry .body {
    color: white;
}
.entries .entry .body p {
    line-height: 1.4em;
}
.entries .entry:nth-child(2n) {
    text-align: left;
    float: right;
}
.entries .entry:nth-child(2n) .title:before {
    left: -63px;
}
.entries .entry:nth-child(2n) .title.big:before {
    transform: translate(-8px, -50%);
}

.small{
    font-size: 1.05rem !important;
}

.smallExp{
    font-size: 0.9rem;
    color: lightgray !important;
}

.alignSelfEnd{
    align-self: end;
}

.plan{
    z-index: 1 !important
}