/*
Theme Name: Foundation Child
Description: Business Name
Template: foundation-parent
Version: 1.0.0
*/
.team-content {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .7);
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	opacity: 0;
	transition: all ease 1s;
	margin: 0 10px;
}
.team-box:hover .team-content {
	opacity: 1;
	transition: all ease 1s;
}
.agent img {
	width: 100%;
}
.team-box {
	position: relative;
	padding: 0 10px;
}
#sub-main {
	padding: 50px 0;
}
#sub-main h2:after {
	content: '';
	width: 50px;
	height: 2px;
	background: #000;
	display: block;
	margin-top: 20px;
}
#about-main {
	padding: 30px 0;
}
#about-main h1 {
	padding: 0;
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 38px;
}
#about-main h1:after {
	content: '';
	width: 50px;
	height: 2px;
	background: #000;
	display: block;
	margin-top: 20px;
}
.team-section-heading {
	text-align: center;
	display: block;
	padding: 40px 0 20px 0;
}
.team-section-heading:not(:nth-of-type(1)) {
	padding-top: 30px;
}
.team-name {
	font-size: 20px;
	margin: 0;
	font-family: 'Futura', sans-serif;
}
.team-title {
	font-size: 18px;
	margin: 10px 0;
}
.flex-3-col {
    flex: 1 1 30%
}
.flex-justify-center{
    display: flex;
    justify-content: center;
}