@font-face {
	font-family: Poppins;
	src: url(./fonts/Poppins-Medium.ttf);
}
.main {
	width: 100%;
	height: auto;
	display: grid;
	place-items: center;
	padding: 50px 0;
}
.contenido-valores {
	width: 100%;
	height: auto;
	margin: auto 0;
	position: relative;
    max-width: 100%;
}
.contenido-valores ul {
	list-style: none;
}
.contenido-valores ul::after {
	content: " ";
	position: absolute;
	width: 2px;
	height: 100%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	background-image: linear-gradient(to bottom, rgba(8, 11, 185, 0.733), rgba(6, 31, 146, 0.747));
}
.contenido-valores 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;
}
.contenido-valores ul li:nth-child(5) {
	margin-bottom: 0;
}
.contenido-valores ul li .circle {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #01AEF2;
	top: 0;
	display: grid;
	place-items: center;
}
.circle::after{
	content: ' ';
	width: 12px;
	height: 12px;
	background-color: #232A7A;
	border-radius: 50%;
}
ul li:nth-child(odd) .circle {
	transform: translate(50%, -50%);
	right: -30px;
}
ul li:nth-child(even) .circle {
	transform: translate(-50%, -50%);
	left: -30px;
}
ul li .date {
	position: absolute;
	width: 50px;
	height: 50px;
	top: -60px;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 13px;
}
.contenido-valores ul li:nth-child(odd) {
	float: left;
	clear: right;
	text-align: right;
	transform: translateX(-30px);
}
ul li:nth-child(odd) .date {
	right: 20px;
}
.contenido-valores ul li:nth-child(even) {
	float: right;
	clear: left;
	transform: translateX(30px);
}
ul li .heading {
	font-size: 22px;
	color: #232A7A;
}

@media only screen and (min-width:798px) and (max-width: 1100px) {
	.contenido-valores{
		width: 80%;
	}
}

@media only screen and (max-width: 798px) {
	.contenido-valores{
		width: 70%;
		transform: translateX(20px);
	}
	.contenido-valores ul::after{
		left: -40px;
	}
	.contenido-valores ul li {
		width: 100%;
		float: none;
		clear: none;
		margin-bottom: 80px;
	}
	.contenido-valores ul li .circle{
		left: -40px;
		transform: translate(-50%, -50%);
	}
	.contenido-valores ul li .date{
		left: 20px;
	}
	.contenido-valores ul li:nth-child(odd) {
		transform: translateX(0px);
		text-align: left;
	}
	.contenido-valores ul li:nth-child(even) {
		transform: translateX(0px);
	}
}

@media only screen and (max-width: 550px) {
	.contenido-valores{
		width: 80%;
	}
	.contenido-valores ul::after{
		left: -20px;
	}
	.contenido-valores ul li .circle{
		left: -20px;
	}
}