.nav-bull {
    display: block;
    overflow: hidden;
    height: 20px;
    width: 20px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 30px;
    transition: background 600ms, border-color 600ms;
    
}
.point.current .nav-bull {
    background:  rgba(255,255,255,0.6);
}
.point:hover .nav-bull {
    border-color: rgba(255,255,255,1);
}
.point.current:hover .nav-bull {
    background:  rgba(255,255,255,1);
}

.sections  {
}
.sections .timeline {
    height: 40px;
    padding-top: 10px;
}
.sections .timeline.centre {
    text-align: center;
}
.sections .timeline div {
    display: inline-block;
}
.sections .timeline .title {
    margin-bottom: 2em;
}
.sections .timeline .point {
    margin-bottom: 2em;
    background: #000;
    color: #fff;
    padding: 0.4em 0.7em;
    border-radius: 2em;
}
.sections .timeline .point.future {
    background: rgba(0,0,0,0.6);
    
}
.sections .timeline .point.past {
    background: rgba(0,0,0,0.4);
    
}

.sections .sect-holder  {
    xmin-height: calc(100% - 40px);
    position: relative;
    overflow: hidden;
    }
.sections .section {
    overflow:auto;
    height: 100%;
    width: 100%;
    position: absolute;
    margin-left: 0;
    left: 0;
    filter: blur(0px);
    box-shadow: 0 -1px 1px 1px rgba(0,0,0,1);
    transition: filter 900ms, margin-left 900ms, left 900ms,box-shadow 900ms;
    border-left: 1px solid rgba(0,0,0,0.7);
    background: rgb(0,0,0);

}

.sections.testing .section {
    
}

.section.past {
    filter: blur(4px);
}
.section.current {
    box-shadow: 0 -12px 500px 500px rgba(0,0,0,1);

}
.section.future {

left: 100vw;
}

.section .sec-title {padding: 1.2em 1.2em 1.2em 22px;
font-size:2em;
background: rgba(0,0,0,1);
color:#fff;
}
.section .sec-content {
    padding: 1.2em 1.2em 1.2em 22px;
}
