
/* new timeline start */
.timeline__cover{
    padding: 100px 0;
    color: #ffffff;
}
.timeline__cover .timeline__title{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.timeline__cover .timeline__title h2{
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    margin-bottom: 16px;
    color: #662D91;
}
.timeline__cover .timeline__title p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    color: #959595;
}

.timeline__cover .timeline{
    padding-top: 64px;
}
.timeline__cover .timeline ul{
    padding-top: 100px;
}
.timeline__cover .timeline ul li {
	background: #9a9a9a;
	position: relative;
	margin: 0 auto;
	width: 2px;
	margin-bottom: 48px;
	list-style-type: none;
}

.timeline__cover .timeline ul li:last-child {
	padding-bottom: 7px;
    width: 0;
    height: 0;
}

.timeline__cover .timeline ul li:before {
	content: '';
	background: #662D91;
	position: absolute;
	left: 50%;
	top: -32px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	width: 16px;
	height: 16px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.timeline__cover .timeline ul li .hidden {
	opacity: 0;
}

.timeline__cover .timeline ul li .content {
	position: relative;
	top: -100px;
    width: 500px;
    max-width: 500px;
    background: #fff;
    border-radius: 20px;
    padding: 0 20px 20px 20px;
    box-shadow: 0px 5px 10px 0px #00000033;
    filter: drop-shadow(-15px -15px 0px #662D91);
}

.timeline__cover .timeline ul li .content .badge{
    font-size: 25px;
    line-height: 40px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    padding: 6px 15px;
    background: #662D91;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.timeline__cover .timeline ul li .content h3{
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #662D91;
    margin: 16px 0 8px;
}

.timeline__cover .timeline ul li .content p{
	color: #666666;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.2px;
}

.timeline__cover .timeline ul li:nth-child(odd) .content {
	left: 70px;
}

.timeline__cover .timeline ul li:nth-child(odd) .content:before {
	left: -38px;
}

.timeline__cover .timeline ul li:nth-child(even) .content {
	left: calc(-500px - 70px);
}

.timeline__cover .timeline ul li:nth-child(even) .content:before {
	right: -38px;
}

/* Media Queries */
@media screen and (max-width: 1020px) {
	.timeline__cover .timeline ul li .content {
		width: 41vw;
	}

	.timeline__cover .timeline ul li:nth-child(even) .content {
		left: calc(-41vw - 45px);
	}
}

@media screen and (max-width: 700px) {
    .timeline__cover {
        padding: 32px 0;
        /* background: #27272C; */
    }
    .timeline__cover .timeline__title {
        text-align: left;
    }
    .timeline__cover .timeline {
        padding-top: 32px;
    }
    .timeline__cover .timeline ul li {
        margin-left: 48px !important;
    }
    .timeline__cover .timeline__title h2 {
        font-size: 32px;
        line-height: 44px;
        letter-spacing: 0.08px;
    }
	.timeline__cover .timeline ul li {
		margin-left: 20px;
	}

	.timeline__cover .timeline ul li .content {
		width: calc(100vw - 100px);
        transition: .2s;
	}

    .timeline__cover .timeline ul li .content p {
        min-height: 110px;
    }

	.timeline__cover .timeline ul li:nth-child(even) .content {
		left: 38px;
	}

	.timeline__cover .timeline ul li:nth-child(even) .content:before {
		left: -33px;
	}
    .timeline__cover .timeline ul li:nth-child(odd) .content {
        left: 38px;
    }
}
