  /* profile card */
.box {
	position: relative;
	width: 300px;
	height: 400px;
	margin: 10px;
	transform-style: preserve-3d;
	perspective: 1000px;
}

.box .body {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: 0.5s ease;
}

.box .body .imgContainer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
}

.box .body .imgContainer img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.box .front-text {
	position: absolute;
	bottom: 0;
	background-color: white;
	width: 100%;
	height: 50px;
	padding-left: 1em;
}

.box .body .content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #2c882b;
	backface-visibility: hidden;
	transform-style: preserve-3d;
	transform: rotateY(180deg);
}

.box:hover .body {
	transform: rotateY(180deg);
}

.box .body .content div {
	transform-style: preserve-3d;
	padding: 20px;
	width: 100%;
	height: 70%;
	background-color: white;
	transform: translateZ(100px);
}

.card,
.card h5.card-header,
.card img {
	border-radius: 0;
}

.card-bt {
	border-top: 10px solid #2c882b;
}

/* click card */
.click-card:hover {
	opacity: 0.7;
	transition: 0.5s ease;
}
