
/* C19 Profile and Bio */
#c19 .allprofiles {
	display: flex;
	flex-wrap: wrap;
}

#c19 .profile {
	flex-basis: calc(50% - 10px);
	margin: 5px;
}


#c19 .profile-image {
	min-width: 180px;
	width: 180px;
	height: 180px;
	overflow: hidden;
	position: relative;
	align-self: center;
	margin: 30px 30px 30px 15px;
	float: right;
}

#c19 .profile-image:after {
	content: '';
	transform: rotate(45deg);
	position: absolute;
	top: -22%;
	left: -22%;
	width: 70%;
	height: 70%;
	border: solid 68px white;
}

#c19 .profile:nth-of-type(1n) {
	background-color: var(--color-evergreen);
}

#c19 .profile:nth-of-type(1n) .profile-image:after {
	border-color: var(--color-evergreen);
}

#c19 .profile:nth-of-type(2n) {
	background-color: #ff8849;
}

#c19 .profile:nth-of-type(2n) .profile-image:after {
	border-color: #ff8849;
}

#c19 .profile:nth-of-type(3n) {
	background-color: #96172d;
}

#c19 .profile:nth-of-type(3n) .profile-image:after {
	border-color: #96172d;
}


#c19 .profile:nth-of-type(4n) {
	background-color: #025293;
}

#c19 .profile:nth-of-type(4n) .profile-image:after {
	border-color: #025293;
}

#c19 .profile-bio {
	padding: 30px;
	color: #fff;
}

#c19 .profile-bio h3,
#c19 .profile-bio p {
	color: #fff;
	padding-right: 15px;
	font-size: 1em;
	line-height: 1.5;
}

#c19 .profile-bio a {
	color: #fff;
}

#c19 .profile-bio a:hover {
	text-decoration: none;
}

#c19 .profile-bio h3 {
	padding-bottom: 5px;
}

#c19 .profile-bio li,
#c19 .profile-bio div,
#c19 .profile-bio span {
	color: #fff;
}

@media (max-width: 1000px) {
	#c19 .profile {
		flex-basis: 100%;
		display: flex;
		flex-flow: row-reverse nowrap;
	}

	#c19 .profile:nth-of-type(even) {
		flex-flow: row nowrap;
	}

	#c19 .profile-image {
		float: none;
		margin: 15px 30px 15px 15px;
	}

	#c19 .profile:nth-of-type(even) .profile-image {
		margin: 15px 15px 15px 30px;
	}
}

@media (max-width: 500px) {

	#c19 .profile,
	#c19 .profile:nth-of-type(even) {
		flex-flow: column nowrap;
	}

	#c19 .profile-bio h3,
	#c19 .profile-bio p {
		text-align: center;
		max-width: 90%;
		padding: 0 0 0 0;
		margin: 0 auto 15px auto;
	}

	#c19 .profile:nth-of-type(even) .profile-image {
		float: none;
		margin: 30px auto 0 auto;
	}

	#c19 .profile-image {
		float: none;
		margin: 30px auto 0 auto;
	}
}

/* End C19 Profile and Bio */
