.index-time{
    background: url(../img/index-time-bg.jpg) no-repeat center center;
    padding: 50px 0;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
}
.index-time h1{
	margin:0 0 30px 0;
	color:#fff;
}
.index-time h2{
	height:70px;
	font-size:26px;
	color:#fff;
	margin:20px auto 0px;
}
.timeline-container {
    width:100%;
    text-align: center;
	margin:0 auto;
}

.content-display {
    margin-bottom: 20px;
    font-size: 18px;
}

.timeline {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    height:200px;
    background:url('../img/time-ruler.png') repeat-x center ;   
}

.timeline-marks {
    display: flex;
    justify-content: space-between;
    padding: 0;
    list-style: none;
    margin: 0 auto;
    height:100%;
	width:85%;
}
.timeline-marks ul{
    width:85%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow: hidden;
	margin:0 auto;
}
.timeline-marks li {
    min-width:80px;
    padding: 10px 5px;
    cursor: pointer;
    /* background-color: #ddd; */
    border-radius: 10px;
    transition: background-color 0.3s ease;
    position:relative;
}

.timeline-marks li .top-ico{
    position: absolute;
    width:20px;
    height:20px;
    opacity:0;
    margin:0 auto;
    left:0;
    right:0;
    top:80px;
}

.timeline-marks li .top-ico::before{
    content: "";
    position: absolute;
    top:-20px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid #0073ff;
   /* background: linear-gradient(to right, #0073ff, #61cdff); */
}

.timeline-marks li .ico{
    position: absolute;
    width:20px;
    height:20px;
    opacity:0;
    margin:0 auto;
    left:0;
    right:0;
    top:110px;
}

.timeline-marks li  .ico::before{
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid #0073ff;
}


.timeline-marks li span{
    position: absolute;
    bottom:0;
    left:0;
    right: 0;
    color:#fff;
    font-size:26px;
    display:block;
}
.timeline-marks li.active span{
    /* background-color: #007BFF; */
    color: #00afff;
}
.timeline-marks li:hover span{
	color: #00afff;
}

.timeline-marks li:hover {
    /* background-color: #007BFF; */
    color: white;
}
.timeline-marks li.active .top-ico,.timeline-marks li.active .ico{
    opacity: 1;
}

.timeline-marks li:hover .top-ico,.timeline-marks li:hover .ico{
    opacity: 1;
}

.timeline:before{
	display: none;
}