
.projectCard {
	position: relative;
	width: 100%;
	max-width: 1200px;
	display: table;
	text-align: center;
	border-collapse:separate;
	border-spacing: 16px;
	margin: auto;	
}
.projectCard-cell {
  background-color: transparent;
  width: 25%;
  height: 500px;
  max-width: 250px;
  perspective: 1000px;
  display: table-cell;
}
.projectCard-inner {
  position: relative;
  width: 100%;
  max-width: 330px;
  padding-top: 170%;
  text-align: center;
  border-radius: 20px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}
.activeFlip {
	transform: rotateY(180deg);
}
.projectCard-front, .projectCard-back {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-backface-visibility: hidden; 
  backface-visibility: hidden;
}
.projectCard-front {
   color: black;
}
.projectCard-front img {
	border: solid 1px #666666;
	width: 100%;
	height: auto;
	border-radius: 20px;
}
.projectCard-back {
  background-color: #008037;
  color: white;
  transform: rotateY(180deg);
}
.projectCard-content {
	margin: 20px auto;
	width: 80%;
}
.projectCard-link {
	position: absolute;
	bottom: 10px;
	margin: auto;
	width: 100%;
}
.projectCard-front p {
	font-family: "Manrope", Arial, Helvetica, sans-serif;
	font-size: 21px;
	font-weight: 600;
	color: #008037;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	text-decoration: none;
	margin: 0px 15px;
	display: block;
	text-transform: uppercase;
	margin-top: 24px;
}
.projectCard-content p {
	position: relative;
	padding: 0px;
	font-size: 16px;
	line-height: 135%;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
	width: 100%;
}
.projectCard-link p a {
	font-size: 18px;
	line-height: 100%;
	color: #FFFFFF;
	text-decoration: none;
	padding: 4px 14px;
	background-color: #B80000;
	border: solid 1px #FFFFFF;
	border-radius: 16px;
	text-align: center;

}
.projectCard-link p a:hover {
	opacity: 0.60;
	text-decoration: none;
}

@media only screen and (max-width: 1200px) {
	.projectCard-back p a, .projectCard-back li {
	font-size: 16px;
	}
}

@media only screen and (max-width: 860px) {
	.projectCard {
	display: block;
	width: 90%;
	}
	.projectCard-cell {
	width: 40%;
	display: inline-block;
	height: 450px;
	margin-bottom: 0px;
	margin-left: 12px;
	margin-right: 12px;
	}
	.projectCard-front p, .projectCard-back p a, .projectCard-back li {
	font-size: 18px;
	}
}
@media only screen and (max-width: 600px) {
	.projectCard-front p, .projectCard-back p a, .projectCard-back li {
	font-size: 18px;
	}
	.projectCard-content p {
	
	}
	.projectCard-cell {
	width: 70%;
	display: inline-block;
	margin-bottom: 0px;
	height: 430px;
	}	
}