@charset "utf-8";
/* CSS Document */

ilke 
.button {
  border-radius: 2px;
  background-color: #006838;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 13px;
  padding: 5px;
  width: 170px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.button hover:before {
color:#99FF00;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}



.wrapper {
	width: 100%;
	margin: 0 auto;
}
.figure {
	width: 32%;
	float: left;
	margin: 0;
}

figcaption {
	text-align: center;
}

figcaption h2 {
	text-transform: uppercase;
	margin: 15 0;
	font-family: "Verdana";
}

figcaption p {
width: 90%;
margin: auto;
text-size-adjust: 18px;
font-family: Times New Roman;
letter-spacing: 2px;
}

figcaption a{
background: ddd;
text-decoration: none;
color: ddd;
text-transform: uppercase;
display: inline-block;
margin-top: 15px;
padding: 10px 30px;
letter-spacing: 3px;
}

.hover-animation{
	position: relative;
	height: 400px;
	width: 300px;
	margin: 10% auto 0;
	color: fff;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.hover-animation img{
position: absolute;
height: 400px;
width: 300px;
left: 0;
-webkit-transition: opacity 1s ease-in-out;
-moz-transition: opacity 1s ease-in-out;
-ms-transition: opacity 1s ease-in-out;
-o-transition: opacity 1s ease-in-out;
-transition: opacity 1s ease-in-out;
}

.hover-animation img.img-front:hover {
	opacity: 0;
	cursor: pointer;
}


