

/*----------  1. Timeline ----------*/

.milestone  .milestone-content .right-content {
    position: relative;
}

.milestone  .milestone-content .right-content:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    top: 60px;
    left: -30px;
    background: #26bbec;
    opacity: 0.3;
    z-index: 1;
}

.milestone:last-child  .milestone-content .right-content:before {
    content: none;
}

.milestone .milestone-content {
    width: 100%;
    display: block;
}

.milestone {
    padding: 10px 0;
}

.milestone + .milestone {
    margin-top: 10px;
}


.milestone  .milestone-content .milestone-number {
    display: inline-block;
    vertical-align: top;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    width: 60px;
    height: 60px;
    background: #26bbec;
    background-image: -moz-linear-gradient( 90deg, #26bbec 50%, #ffffff 150%);
    background-image: -webkit-linear-gradient( 90deg, #26bbec 50%, #ffffff 150%);
    background-image: -ms-linear-gradient( 90deg, #26bbec 50%, #ffffff 150%);
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    position: relative;
    z-index: 2;
}

.milestone  .milestone-content .right-content {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 105px);
    padding: 0 0 0 20px;
}

.milestone  .milestone-content .milestone-title + .milestone-text  {
    // padding-top: 5px;
}

.milestone  .milestone-title {
    color: #2b3a58;
    font-size: 14px;
    font-weight: 600;
}

.milestone .milestone-text {
    color: #646a7a;
    font-size: 14px;
    font-weight: 400;
}




/*==================================
=            Responsive            =
==================================*/
    @media screen and (max-width: 480px) {
        .milestone  .milestone-content .right-content {
            padding-right: 0;
            width: calc(100% - 70px);
        }
    }


/*=====  End of Responsive  ======*/
