
.mainTL {
	width: 100%;
	height: auto;
	display: grid;
	place-items: center;
	padding: 50px 0;
	
}
.mainTL .headTL {
	font-size: 29px;
	color: rgba(91, 14, 216, 0.767);
	position: relative;
	margin-bottom: 100px;
	font-weight: 500;
}
.mainTL .headTL::after {
	content: " ";
	position: absolute;
	width: 50%;
	height: 3px;
	left: 50%;
	bottom: -5px;
	transform: translateX(-50%);
	background-image: linear-gradient(to right, rgba(91, 14, 216, 0.767), rgba(238, 12, 200, 0.747));
}

/* Container Css Start  */
.containerTL {
	width: 70%;
	height: auto;
	margin: auto 0;
	position: relative;
}
.containerTL ul {
	list-style: none;
}
.containerTL ul::after {
	content: " ";
	position: absolute;
	width: 2px;
	height: 100%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	background-image: linear-gradient(to bottom, rgba(27, 46, 53, 0.767), rgba(222, 230, 233, 0.747));
}
.containerTL ul li {
	width: 50%;
	height: auto;
	padding: 15px 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.218);
	position: relative;
	margin-bottom: 30px;
	z-index: 99;
}
.containerTL ul li:nth-child(4) {
	margin-bottom: 0;
}
.containerTL ul li .circleTL {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #ff601c4b;
	top: 0;
	display: grid;
	place-items: center;
}
.circleTL::after{
	content: ' ';
	width: 12px;
	height: 12px;
	background-color: #FF601C;
	border-radius: 50%;
}
ul li:nth-child(odd) .circleTL {
	transform: translate(50%, -50%);
	right: -30px;
}
ul li:nth-child(even) .circleTL {
	transform: translate(-50%, -50%);
	left: -30px;
}
ul li .dateTL {
	position: absolute;
	width: 130px;
	height: 33px;
	background-image: linear-gradient(to right,#243980,#4da5db);
	border-radius: 15px;
	top: -45px;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 1.5rem;
	box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.318);
}
.containerTL ul li:nth-child(odd) {
	float: left;
	clear: right;
	text-align: right;
	transform: translateX(-30px);
}
ul li:nth-child(odd) .dateTL {
	right: 20px;
}
.containerTL ul li:nth-child(even) {
	float: right;
	clear: left;
	transform: translateX(30px);
}
ul li .headingTL {
	font-size: 17px;
	color: rgb(55, 90, 100);
}
.mainTL ul li p {
	font-size: 13px;
	color: #666;
	line-height: 18px;
	margin: 6px 0 4px 0;
}
.mainTL ul li a {
	font-size: 13px;
	text-decoration: none;
	color: rgb(18, 54, 214);
	transition: all 0.3s ease;
}


@media only screen and (min-width:798px) and (max-width: 1100px) {
	.containerTL{
		width: 80%;
	}
}

@media only screen and (max-width: 798px) {
	.containerTL{
		width: 70%;
		transform: translateX(20px);
	}
	.containerTL ul::after{
		left: -40px;
	}
	.containerTL ul li {
		width: 100%;
		float: none;
		clear: none;
		margin-bottom: 80px;
	}
	.containerTL ul li .circleTL{
		left: -40px;
		transform: translate(-50%, -50%);
	}
	.containerTL ul li .dateTL{
		left: 20px;
	}
	.containerTL ul li:nth-child(odd) {
		transform: translateX(0px);
		text-align: left;
	}
	.containerTL ul li:nth-child(even) {
		transform: translateX(0px);
	}
}

@media only screen and (max-width: 550px) {
	.containerTL{
		width: 80%;
	}
	.containerTL ul::after{
		left: -20px;
	}
	.containerTL ul li .circleTL{
		left: -20px;
	}
}
