.flip-card {
	perspective: 1000px;
}

.flip-card-inner {
	position: relative;
	width: 100%;
	min-height: 260px;
	height:320px;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 10px;
	padding: 2em;
	background: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

.flip-card-back {
	transform: rotateY(180deg);
}

.flip-card-front {
	text-align: center;
}

.team-image {
	width: 120px;
	height: 120px;
	margin: 0 auto 1em auto;
	border-radius: 50%;
	overflow: hidden;
}

.team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}






.features article .icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.features article .icon:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 110px;
	height: 110px;
	margin: 0;
}

.team-photo {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.features article .icon:before {
	width: 120px;
	height: 120px;
}

.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: none;
}


@media screen and (max-width: 736px) {

	.team-photo {
		width: 60px;
		height: 60px;
	}

	.features article .icon:before {
		width: 70px;
		height: 70px;
	}

}