.steps-bar
{
	list-style: none;
	padding: 0 1em 0 0;
	display: flex;
	line-height: 1;
}

.steps-bar > li
{
	display: inline-block;
	margin: 0 5em 0 0;
	padding: 1em 0;
	position: relative;
	background-color: #666;
	color: white;
}

.steps-bar > li[aria-current],
.steps-bar > li.current
{
	background-color: black;
	color: white;
}

.steps-bar > li[aria-current] ~ li,
.steps-bar > li.current ~ li
{
	background-color: #ccc;
	color: black;
}

.steps-bar > li::before,
.steps-bar > li::after
{
	content: '';
	z-index: -1;
	position: absolute;
	right: -2em;
	left: -2em;
	background-color: inherit;
}

.steps-bar > li:first-of-type
{
	padding-left: 1.5em;
}

.steps-bar > li:first-of-type::before,
.steps-bar > li:first-of-type::after
{
	left: 50%;
}

.steps-bar > li::before
{
	top: 0;	
	bottom: 50%;
	transform: skew(45deg);
}

.steps-bar > li::after
{
	top: calc(50% - 0px);	
	bottom: 0;
	transform: skew(-45deg);
}

.steps-bar a
{
	color: inherit;
	text-decoration: inherit;
}

.people
{
	list-style: none;
	padding: 0;
	margin: -1rem -1rem 0 -1rem;
}

.people::after
{
	content: '';
	display: block;
	clear: both;
}

.people > li
{
	position: relative;
	overflow: hidden;
	float: left;
	margin: 1rem;
}

@media (min-width: 576px)
{
	.people > li
	{
		width: calc(50% - 2rem);
	}
}

@media (min-width: 768px)
{
	.people > li
	{
		width: calc(33.3% - 2rem);
	}
}

@media (min-width: 992px)
{
	.people > li
	{
		width: calc(25% - 2rem);
	}
}

.people > li > img
{
	width: 100%;
}

.people > li > div
{
	position: absolute;
	box-sizing: border-box;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1em;
	color: white;
	background: hsla(356, 90%, 40%, 0.63);
	transform: translateY(100%);
	transition: transform 0.2s ease-in-out;
}

.people > li:focus > div,
.people > li:hover > div
{
	transform: translateY(0);
}

.people .bio
{
    font-size: small;
}
