
.an-block-people {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: start;
	align-content: center;
}

.an-block-people ul {
	padding: 0;
}

.an-block-people .person {
	display: block;
	text-align: center;
	flex-basis: 240px;
	padding: 0;
	margin: 12px;
}

.an-block-people .person a,
.an-block-people .person span.no-link
{
	display: block;
}

.an-block-people .person a {
	text-decoration: none;
	cursor: pointer;
}

.an-block-people .person .image {
	display: block;
	background: #eee;
	border-radius: 999px;
	position: relative;
	overflow: hidden;
	width: 220px;
	height: 220px;
	margin: 0 auto;
}

.an-block-people .person .image .hover {
	display: flex;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 300px;
	left: 0;
	background: rgba(0, 150, 0, 0.8);
	color: #fff;
	transition: 300ms;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.an-block-people .person:hover .image .hover {
	top: 0;
}

.an-block-people .person .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


@media screen and (max-width: 768px) {

	.an-block-people {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		justify-content: unset;
	}

	.an-block-people .person {
		margin: 0 5vw 20px;
		width: 180px;
	}

	.an-block-people .person .image {
		width: 180px;
		height: 180px;
	}

}
