.entries {
    float: left;
    width: 100%;
    position: relative;
}
.entries:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0;
    border: 1px solid #eaeaea;
    background-color: #eaeaea;
    top: 0;
    bottom: 0;
    left: calc(50% - 1px);
    z-index: 1000;
}
.entries .entry {
    width: 48%;
    float: left;
    padding: 20px;
    clear: both;
    text-align: right;
    position: relative;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
    transition: all ease .5s;
}

.entries .entry:hover:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 4px solid #146c37;
    background-color: #146c37;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: -23px;
    z-index: 1000;
    transition: all ease .5s;
}

.entries .entry:hover {
    border: 1px solid #146c37;
    transition: all ease .5s;
}

.entries .entry:hover:after {
    content: '';
    position: absolute;
    transition: all ease .5s;
    width: 20px;
    border: 1px solid #146c37;
    background-color: #146c37;
    top: 50%;
    transform: translateY(-50%);
    right: -22px;
    z-index: 1000;
}

.entries .entry:not(:first-child) {
    margin-top: -40px;
}
.entries .entry .title {
    font-size: 22px;
    color: #aaaaae;
    font-family: 'Proxima Nova Bl', sans-serif;
    float: left;
    width: 30%;
    text-align: center;
    line-height: 68px;
}
.entries .entry:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 4px solid #eaeaea;
    background-color: #eaeaea;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: -23px;
    z-index: 1000;
    transition: all ease .5s;
}
.entries .entry:after {
    transition: all ease .5s;
    content: '';
    position: absolute;
    width: 20px;
    border: 1px solid #eaeaea;
    background-color: #eaeaea;
    top: 50%;
    transform: translateY(-50%);
    right: -22px;
    z-index: 1000;
}

.entries .entry .title.big:before {
    width: 24px;
    height: 24px;
    transform: translate(8px, -50%);
}
.entries .entry .body {
    color: #eaeaea;
    float: right;
    width: 70%;
}
.entries .entry .body p {
    font-size: 14px;
    text-align: left;
    margin: 0;
}
.entries .entry:nth-child(2n) {
    text-align: left;
    float: right;
}
.entries .entry:nth-child(2n):before {
    left: -22px;
}
.entries .entry:nth-child(2n):after {
    left: -22px;
}
.entries .entry:nth-child(2n) .title.big:before {
    transform: translate(-8px, -50%);
}
