.edu_timeline
{
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 4rem;
	padding: 2rem 0;
}

.edu_item
{
	display: flex;
	position: relative;
}

.edu_dot
{
	position: relative;
	width: 2rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.edu_dot::before
{
	content: "";
	display: block;
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	background-color: #C00;
	position: relative;
	z-index: 2;
}

.edu_item:first-child .edu_dot::after
{
	content: "";
	position: absolute;
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.8);
	animation: ripple 1.8s ease-out infinite;
	box-shadow: 0 0 10px rgba(255, 255, 255, 1);
	z-index: 1;
}


@keyframes ripple
{
	0%
	{
		transform: scale(1);
		opacity: 0.8;
	}

	100%
	{
		transform: scale(2.5);
		opacity: 0;
	}
}


.edu_content
{
	flex: 1;
	padding-left: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.edu_row
{
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.5rem;
}

.edu_logo
{
	height: 3rem;
	width: auto;
	flex-shrink: 0;
}

.edu_nameblock
{
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.edu_country
{
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: -0.5rem;
}

.country_flag
{
	height: 1rem;
	width: auto;
	flex-shrink: 0;
}

.country_name
{
	font-size: 1rem;
	color: #999;
}

.edu_name
{
	font-weight: bold;
	font-size: 1.2rem;
}

.edu_year
{
	font-size: 1rem;
	color: #999;
	margin-bottom: 0.3rem;
}

.edu_details
{
	font-size: 1rem;
	line-height: 1.4;
}

/* Special Cases */
.edu_details p
{
	margin-bottom: 0;
}

.edu_details .edu_degree
{
	margin-bottom: 0.8rem;
}