  /* standard colors */
:root {
	--c-blue: #1d4e91;
	--c-blue-lighter: #406aa1cf;
	--c-gold: #ea9610;
}

/* divider element - Section Divider <div class="divider">&nbsp;</div> */
.divider {
	border-top: 3px solid var(--c-blue-lighter);
	margin: 1.5rem 4rem;
	display: block;
}

/* program thumbnails */
.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 2rem;
}

.flex .program {
	padding: 10px;
	display: flex;
	flex-direction: column;
	flex-basis: 250px;
}

.program a.placeholder {
	background: var(--c-blue-lighter);
	max-width: 250px;
	padding: 35px;
}

.program .title {
	text-align: center;
	text-transform: capitalize;
	font-weight: bold;
}

.program a {
	border: 2px solid transparent;
}

.program a:hover,
.program a:focus {
	border-color: var(--c-gold);
}

/* text content */
.content p {
	font-weight: 400;
	padding: .5rem 0 1rem;
}

.content h3,
.content h4 {
	margin: 1rem 0 .5rem;
}

/* skills */
.flex.skills {
	justify-content: start;
}

.skills ul {
	padding-right: 15px;
}

.contact {
	font-size: 14px;
	margin: 10px 0 25px;
}
.dept {
	font-size: 14px; color: #34495e; font-weight: 700;
}
.name {
	font-weight: 900;
}
.email, .phone {
	font-size: 12px; font-family: arial, helvetica, sans-serif;
}
.highlight {
	font-weight: 900;
}
.blue {
	color: #1d4e91;
}
.gold {
	color: #ea9610;
}
ol.gold-marker ::marker {
	color: #ea9610;
}
.italic {
	font-weight: 600;
	font-style: italic;
}
.sizeUp {
	font-size: 1.1em;
}

.callout {

	border-left: 5px solid;

	margin-bottom: 25px;

	border-radius: 2px;    display: flex;
	justify-content: space-between;
	align-items: center;
}			
.callout--blue {
	border-color: #1d4e91;
	background: #f0f0f0;
}

.callout p {
	padding: 0 20px;
}


@media screen and (max-width: 625px) {
	.callout p {
		padding: 10px;
	}
	.callout img {
		display: none;
	}
}
