.timeline-container {
	position: relative; 
}
.timeline-container::after {
	content: '';
	display: table;
	clear: both;
}
.timeline {
	width: 100%;
}
.timeline-list {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.timeline-list-wrap {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	/* transform: translate3d(0, 0, 0);
	transition: transform 1s cubic-bezier(0.455, 0.03, 0.515, 0.955); */
	height: 100vh;
}
@media screen and (min-width: 567px) {
    .timeline-list-wrap {
		height: 80vh;
    }
}
@media screen and (min-width: 768px) {
    .timeline-list-wrap {
		height: 110vh;
    }
}
@media screen and (min-width: 1200px) {
    .timeline-list-wrap {
        height: 605px;
    }
}
.timeline-container {
	width: 100%;
	margin: 0 auto;
}
.timeline-item {
	position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	box-sizing: border-box;
}
.timeline-item.slide-active {
	opacity: 1;
	visibility: visible;
}
.timeline-dots-main {
	position: absolute;
	overflow: hidden;
	top: 50px;
    left: 0;
    z-index: 5;
    width: 100%;
	height: 47px;
}
@media screen and (min-width: 768px) {
	.timeline-dots-main {
        top: calc(8.33vw + 32px);
    }
}
@media screen and (min-width: 1200px) {
    .timeline-dots-main {
		width: 50%;
		top: calc(8.33vw + 40px);
    }
}
.timeline-dots-wrap {
	position: absolute;
    left: 24px;
    z-index: 5;
    width: 100%;
	height: 47px;
	left: 24px;
}

@media screen and (min-width: 768px) {
    .timeline-dots-wrap {
		left: 8.33vw;
	}
}
.timeline-dots {
	margin: 0;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	left: -50%;
	transition: transform .3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@media screen and (min-width: 1200px) {
    .timeline-dots {
        left: -100%;
    }
}
.timeline-dots li {
	float: left;
	width: 120px;
	list-style: none;
    overflow: hidden;
	position: relative;
}
.timeline-dots li:after {
	content: '';
    width: calc(100% - 73px);
    height: 2px;
    background: #ABABAB;
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
	margin-top: -2px;
}
.timeline-dots li:last-child:after {
	display: none;
}

.timeline-dots li button {
	padding: 0;
	background: none;
	appearance: none;
	border: 0;
	color: #ABABAB;
	top: 0;
	font-size: 20px;
	font-weight: 600;
}

.timeline-dots li button {
	width: 60px;
	height: 47px;
	text-align: center;
}

.timeline-dots li button:focus {
	top: 0;
}




