/** LAYOUT **/
.contact-cards-container {
	display: flex;
	justify-content: space-around;
	flex-flow: wrap;
}

h2.contact-cards-subheader {
	padding-top: 10%;
	padding-bottom: 5px;
	border-bottom: 2px solid #666;
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}

.contact-card-with-image {
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

img.contact-card-with-image__image {
	width: 8em;
}

.contact-card-with-image__text {
	padding: 2em;
	width: 20em;
}

.contact-card {
	width: 20rem;
	height: 15rem;
	margin: 2.5rem;
}

p.contact-card__name {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	border-bottom: 5px solid #E90802;
}

p.contact-card__job-title, p.contact-card__college-name {
	margin-top: 0.25rem;
	margin-bottom: 1.5rem;
}

p.contact-card__phone-number, p.contact-card__email, p.contact-card__general-text {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
}


/** TEXT **/
p.contact-card__name {
	text-transform: uppercase;
	font-weight: bold;
}

p.contact-card__job-title {
	font-style: italic;
}

p.contact-card__college-name {
	font-weight: bold;
}