.xmk-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.xmk-timeline li {
    display: block;
    box-sizing: border-box;
    position: relative;
    padding: 30px 0;
    margin: 0;
    width: 50%;
}

.xmk-timeline li h4,
.xmk-timeline li h5,
.xmk-timeline li p {
    padding: 0;
    margin: 0;
}

.xmk-timeline li h4,
.xmk-timeline li h5 {
    font-weight: bold;
    color: #021A27;
}

.xmk-timeline li h4 {
    font-size: 24px;
    line-height: 1;
}

.xmk-timeline li h5 {
    font-size: 20px;
    line-height: 1.2;
}

.xmk-timeline li p {
    font-weight: normal;
    color: #9B9B9B;
    font-size: 18px;
    line-height: 1.3;
    margin-top: 15px;
}

.xmk-timeline .xmk-item-left {
    text-align: right;
    margin-left: 1px;
    padding-right: 30px;
    border-right: 1px solid #9B9B9B;
}

.xmk-timeline .xmk-item-right {
    text-align: left;
    margin-left: 50%;
    padding-left: 30px;
    border-left: 1px solid #9B9B9B;
}

.xmk-timeline li:last-child {
    border-style: dashed;
}

.xmk-timeline li .bullet-point {
    font-size: 2em;
    position: absolute;
    top: 30px;
}

.xmk-timeline .xmk-item-right .bullet-point {
    left: -28px;
}

.xmk-timeline .xmk-item-left .bullet-point {
    right: -28px;
}

@media screen and (max-width: 767px) {
    .xmk-timeline li {
        width: auto;
    }

    .xmk-timeline .xmk-item-left,
    .xmk-timeline .xmk-item-right {
        text-align: left;
        margin-left: 15px;
        padding-left: 30px;
        padding-right: 0;
        border-left: 1px solid #9B9B9B;
        border-right: 0;
    }

    .xmk-timeline .xmk-item-right .bullet-point {
        left: -26px;
        right: auto;
    }

    .xmk-timeline .xmk-item-left .bullet-point {
        left: -26px;
        right: auto;
    }

    .xmk-timeline .xmk-item-left .bullet-point {
        -moz-transform: scaleX(-1);
        -o-transform: scaleX(-1);
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
        filter: FlipH;
        -ms-filter: "FlipH";
    }
}