.content .staff_container {
	text-align: center;
}
.content .staff {
	display: inline-block;
	width: 220px;
	margin: 0px 50px 50px 50px;
	text-align: center;
	vertical-align: top;
	cursor: pointer;
}

.content .staff .image {
	width: 100%;
	padding-bottom: 150%;
	position: relative;
	overflow: hidden;
}

.content .staff .plus {
	position: absolute;
	
	background-color: #fff;
	color: #579fd4;
	
	font-size: var(--font-size-40);
	font-weight: bold;
	right: 15px;
	bottom: 15px;
	height: 60px;
	width: 60px;
	line-height: 60px;
    text-align: center;
	border-radius: 50%;
	transform: translate(50%, 50%);
	
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.content .staff .plus::before {
	display: block;
	height: 100%;
	content: '+';
	
	-webkit-transition: transform 300ms ease-in-out;
	-moz-transition: transform 300ms ease-in-out;
	-ms-transition: transform 300ms ease-in-out;
	-o-transition: transform 300ms ease-in-out;
	transition: transform 300ms ease-in-out;
}

.content .staff:hover .plus {
	right: 50%;
	bottom: 50%;
	opacity: 0.8;
    -webkit-transform: translate(50%, 50%) scale(2.25);
    -moz-transform: translate(50%, 50%) scale(2.25);
    -ms-transform: translate(50%, 50%) scale(2.25);
    -o-transform: translate(50%, 50%) scale(2.25);
    transform: translate(50%, 50%) scale(2.25);
}

.content .staff:hover .plus::before {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
}

.modal_content .staff_title {
    font-weight: normal;
    font-size: var(--font-size-21);
    color: #555759;
}
.modal_content .contact span {
    font-weight: normal;
    font-size: var(--font-size-21);
	color: #f7a81b;
}

@media( max-width: 768px) {
	.content .staff:nth-child(odd) {margin-left: 0px;}
	.content .staff:nth-child(even) {margin-right: 0px;}
	
	.modal_content { width: 90%; }
	
	.modal_content .image,
	.modal_content .text {
		display: block;
		width: 100%;
	}
	
	.modal_content .image {
		padding-bottom: 80%;
	}
	
	.modal_content .text {
		max-height: 500px;
		overflow-y: auto;
	}
}

.staff h6,
.modal h6 {
	margin-bottom: 0px;
}

.modal .staff_title {
	display: block;
	margin-bottom: 16px;
}