section.meettheteam {
	text-align: center;
	color: #5f5f5f;
}
section.meettheteam h2 {
	text-align: center;
    font-size: 60px;
    font-weight: 200;
    display: block;
	padding: 0px;
	margin: 0px;
	margin-bottom: 15px;
}
section.meettheteam .small { 
	font-size: 24px;
	font-weight: 300;
	margin-top: 35px;
	display: block;
	width: 40%;
	margin: 0px auto;
	text-align: center;
}


section.meettheteam .member {
	display: inline-block;
	width: 250px;
	box-sizing: border-box;
	overflow: hidden;
	padding: 10px;
	margin: 10px;
	background: rgba(0,0,0,0.03);
	vertical-align: top;
	
	border: 5px solid #ecb84a;
	background-color: transparent;
}
section.meettheteam .member:hover {
	cursor: pointer;
}
section.meettheteam .member img {
	display: block;
	width: 100%;
	height: auto;
}
div#content section.meettheteam .member h3 {
	margin-top: 0px;
    font-size: 24px;
	line-height: 28px;
    padding-bottom: 4px;
    border-bottom: 3px solid #ecb84a;
	margin-bottom: 8px;
	margin-top: 5px;
}
section.meettheteam .member p {
	margin: 0px;
	font-size: 20px;
	line-height: 26px;
}




/* flip logic starts here */
section.meettheteam .member {
	perspective: 1000px;
	transform-style: preserve-3d;
}

section.meettheteam .member:hover .flip-card-back, section.meettheteam .member.hover .flip-card-back {
	transform: rotateY(0deg);
}
section.meettheteam .member:hover .flip-card-front, section.meettheteam .member.hover .flip-card-front {
	transform: rotateY(180deg);
}
section.meettheteam .member .flip-card-inner {
	width: 220px;
	height: 294px;
}
section.meettheteam .member .flip-card-inner {
	transition: 0.6s;
	transform-style: preserve-3d;
	position: relative;
}
section.meettheteam .member .flip-card-front, section.meettheteam .member .flip-card-back {
	backface-visibility: hidden;
	transition: 0.6s;
	transform-style: preserve-3d;
	background: #ffffff;

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
}
section.meettheteam .member .flip-card-front {
	z-index: 2;
	transform: rotateY(0deg);
}
section.meettheteam .member .flip-card-back {
	transform: rotateY(-180deg);
}
/* flip logic ends here */





section.meettheteam .member .flip-card-back {
	text-align: left;
}
section.meettheteam .member .flip-card-back h3 {
	text-align: center;
}
section.meettheteam .member .flip-card-back p {
	font-size: 15px;
	line-height: 22px;
	padding: 0px 7px;
}
section.meettheteam .member .flip-card-back dl {
	overflow: hidden;
	margin: 0px;
	font-size: 15px;
	line-height: 22px;
	padding: 0px 7px;
	padding-top: 7px;
	margin-top: 7px;
	border-top: 3px solid #ecb84a;
}
section.meettheteam .member .flip-card-back dt {
	font-weight: bold;
}
section.meettheteam .member .flip-card-back dd {
	padding: 0px;
	margin: 0px;
	margin-bottom: 10px;
}

@media screen and (max-width: 1400px) {
	section.meettheteam h2 {
		font-size: 50px;
	}
	section.meettheteam .small { 
		font-size: 22px;
		width: 40%;
	}
}
@media screen and (max-width: 1200px) {
	section.meettheteam h2 {
		font-size: 40px;
	}
	section.meettheteam .small { 
		font-size: 20px;
		width: 50%;
	}
}
@media screen and (max-width: 1000px) {
	section.meettheteam h2 {
		font-size: 30px;
	}
	section.meettheteam .small { 
		font-size: 18px;
		width: 60%;
	}
}
@media screen and (max-width: 800px) {
	section.meettheteam .small { 
		width: 70%;
	}
}
@media screen and (max-width: 600px) {
	section.meettheteam .small { 
		width: 80%;
	}
}