/*timeline part start*/
.homeTimeline {
    list-style: none;
    position: relative;
    overflow: hidden;
}
.homeTimeline:after {
    content: "";
    position: absolute;
    top: 26px;
    left: 160px;
    margin-left: -2px;
    background-color:#9c9c9c;
    height: 100%;
    width: 3px;
    border-radius: 2px;
    display: block;
}
.homeTimeline .timeline-row {
    padding-left: 160px;
    position: relative;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
}
.anchRec{
    margin-top: -100px;
    height: 100px;
    display: block;
}
.homeTimeline .bottom.timeline-row{
    padding-bottom: 5px
}
.homeTimeline .time-step{
    position: absolute;
    left: 0;
    text-transform: uppercase;
    font-weight: 500;
    color: #666;
    width: 120px;
    text-align: right;
    font-size: 16px;
    line-height: 34px;
}
.homeTimeline .timeline-icon {
    position: absolute;
    top: 20px;
    left: 160px;
    margin-left: -17px;
    width: 34px;
    height:34px;
    border-radius: 50%;
    background-color: #fff;
    border:2px solid #999999;
    padding: 7px;
    z-index: 100;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.homeTimeline .circle {
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: block;
    background-color: #ec5c54;
}
.homeTimeline .active .timeline-icon{
    width: 48px;
    height:48px;
    margin-left: -24px;
    padding:11px;
    top: 11px;
}
.homeTimeline .active .timeline-icon .circle{
    width: 23px;
    height: 23px;
}
.homeTimeline .timeline-row .timeline-content {
    margin-left: 40px;
    position: relative;
}
.homeTimeline .timeline-row .timeline-content .panel-body {
    position: relative;
    z-index: 10;
}
.homeTimeline .timeline-row .timeline-content h2 {
    margin-top: 0;
    font-size:20px;
    text-transform: uppercase;
    line-height: 34px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.homeTimeline .timeline-row .timeline-content h2 a{
    color: #333;
    display: block;
}
.homeTimeline .timeline-row .timeline-content h2 a:hover{
    color: #0072BA;
}
.homeTimeline .timeline-row .timeline-content p{
    font-weight: lighter;
    line-height: 22px;
    margin-bottom: 15px;
}
.homeTimeline .timeline-row.bottom .time-step{
    color: #0072BA;
}
.homeTimeline.animated .timeline-row .timeline-content {
    opacity: 0;
    left: 20px;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    transition: all 0.8s;
}
.homeTimeline.animated .timeline-row.active .timeline-content {
    opacity: 1;
    left: 0;
}
.timeline-content ul{
    list-style: disc;
    margin-left: 20px;
    line-height: 22px;
    margin-bottom: 15px;
    font-weight: lighter;
}
.timeline-content ol{
    margin-left: 20px;
    line-height: 22px;
    margin-bottom: 15px;
    font-weight: lighter;
}
.timeline-content ul.lsno{
    list-style: none;
}
.timeline-content h3{
    margin-bottom: 15px;
    text-transform: uppercase;
	font-weight: 500
}
.timeline-content .bold{
    font-weight: 500 !important
}

@media (max-width:480px) {

    .homeTimeline:after {
        display: none;
    }
    .homeTimeline .timeline-row{
        padding-left: 0
    }
    .homeTimeline .timeline-icon{
        display: none;
    }
    .homeTimeline .time-step{
        position: inherit;
        text-align: left;
    }
    .homeTimeline .timeline-row .timeline-content{
        margin-left: 0
    }
    #processContainer .row {
        margin-left: 0;
        margin-right: 0;
    }
}