.team .division .members .item {
	margin-bottom: 2.5em;
	border-radius: 2px;
	position: relative;
	text-align: center;
	padding: 1%;
	min-width: 18%;
}
.team .division .members .item .picture {  }
.team .division .members .item img {
	max-width: 100%;
	height: auto;
	margin: 0;
	margin: auto;
}
.team .division .members .item .name {
	padding: 10px 0;
	text-align: center;
	margin: 0;
}
.team .closer {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	cursor: auto;
	left: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 200;
}

.team .division .members .item .details {
	color: #666769;
	top: 50%;
	left: 50%;
	transform:  scale(0, 0) translate(-50%, -50%);
	opacity: 0;
	z-index: -1;
	perspective: 800px;
	transition: all 500ms, z-index 1ms 500ms;
	position: fixed;
	min-width: 1100px;
	transform-origin: 0;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, .4);
}

.team .division .members .item .details.open {
	opacity: 1;
	transition: all 500ms;
	z-index: 250;
	transform: scale(1, 1) translate(-50%, -50%);
}
.team .division .members .item .details .o5 {
	padding: 30px 20px 20px;
	background: #fff;
	position: relative;
}
.team .division .members .item .details .rightwrap {
	transform-origin: 0 50%;
	z-index: 10;
	transition: all 500ms;
	padding-top: 30px;
}

.team .division .members .item .details .right {
	max-height: 500px;
	overflow-y: auto;
	padding: 5px;
}
.team .division .members .item .details.open .rightwrap {
	
}
.team .division .members .item .details .left {
	z-index: 5;
}
.team .division .members .item .details img {
}

.team .division .members .item .details .close {
	width: 31px;
	height: 31px;
	position: absolute;
	right: -15px;
	z-index: 20;
	top: -15px;
	opacity: 0;
	transition: border 300ms;
	border: 3px solid #3b3b3b;
	background: #fff;
	border-radius: 50%;
	padding: 5px;
}
.team .division .members .item .close:before,
.team .division .members .item .close:after {
	content: '';
	width: 70%;
	height: 5px;
	background: #3b3b3b;
	transition: background 300ms;
	transform-origin: 50%;
	top: 45%;
	left: 15%;
	position: absolute;
	transform: rotate(-45deg);
}
.team .division .members .item .close:after {
	transform: rotate(45deg);
}
.team .division .members .item .details.open .close { opacity: 1; }
.team .division .members .item .details .close:hover,
.team .division .members .item .details .close:active { border-color: #af0700; }
.team .division .members .item .details .close:hover:before,
.team .division .members .item .details .close:active:before,
.team .division .members .item .details .close:hover:after,
.team .division .members .item .details .close:active:after { background: #af0700; }
.team .division .members .item .more {
	padding: 0 15px;
	transition: all 200ms;
	text-align: center;
}

.team .container.mapin > div {
	width: 100%;
}
.team .division .addresscard h4,
.team .division .addresscard h3 {
	margin: 0;
}
.team .division > h2,
.team .subdivisions .division > h2 {
	margin-bottom: 1em;
	padding-bottom: 10px;
	text-transform: uppercase;
	border-bottom: 2px solid rgb(181,9,0);
	padding-bottom: 10px;
	display: none;
}
.team .division .subtitle { opacity: .8; transform: translateY(-1em); }

@media all and (max-width: 900px) {
	.team .division .members .item .details {
		width: 100%;
		transform: scale(0.7) translate(-50%, -50%);
		transform-origin: 0;
	}
}

